ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ConcurrentSkipListMapTest.java
(Generate patch)

Comparing jsr166/src/test/tck/ConcurrentSkipListMapTest.java (file contents):
Revision 1.10 by jsr166, Mon Nov 16 04:57:10 2009 UTC vs.
Revision 1.11 by jsr166, Mon Nov 16 05:30:07 2009 UTC

# Line 703 | Line 703 | public class ConcurrentSkipListMapTest e
703              ConcurrentSkipListMap c = map5();
704              c.get(null);
705              shouldThrow();
706 <        } catch (NullPointerException e){}
706 >        } catch (NullPointerException e) {}
707      }
708  
709      /**
# Line 714 | Line 714 | public class ConcurrentSkipListMapTest e
714              ConcurrentSkipListMap c = map5();
715              c.containsKey(null);
716              shouldThrow();
717 <        } catch (NullPointerException e){}
717 >        } catch (NullPointerException e) {}
718      }
719  
720      /**
# Line 725 | Line 725 | public class ConcurrentSkipListMapTest e
725              ConcurrentSkipListMap c = new ConcurrentSkipListMap();
726              c.containsValue(null);
727              shouldThrow();
728 <        } catch (NullPointerException e){}
728 >        } catch (NullPointerException e) {}
729      }
730  
731  
# Line 737 | Line 737 | public class ConcurrentSkipListMapTest e
737              ConcurrentSkipListMap c = map5();
738              c.put(null, "whatever");
739              shouldThrow();
740 <        } catch (NullPointerException e){}
740 >        } catch (NullPointerException e) {}
741      }
742  
743      /**
# Line 748 | Line 748 | public class ConcurrentSkipListMapTest e
748              ConcurrentSkipListMap c = map5();
749              c.putIfAbsent(null, "whatever");
750              shouldThrow();
751 <        } catch (NullPointerException e){}
751 >        } catch (NullPointerException e) {}
752      }
753  
754      /**
# Line 759 | Line 759 | public class ConcurrentSkipListMapTest e
759              ConcurrentSkipListMap c = map5();
760              c.replace(null, "whatever");
761              shouldThrow();
762 <        } catch (NullPointerException e){}
762 >        } catch (NullPointerException e) {}
763      }
764  
765      /**
# Line 770 | Line 770 | public class ConcurrentSkipListMapTest e
770              ConcurrentSkipListMap c = map5();
771              c.replace(null, one, "whatever");
772              shouldThrow();
773 <        } catch (NullPointerException e){}
773 >        } catch (NullPointerException e) {}
774      }
775  
776      /**
# Line 782 | Line 782 | public class ConcurrentSkipListMapTest e
782              c.put("sadsdf", "asdads");
783              c.remove(null);
784              shouldThrow();
785 <        } catch (NullPointerException e){}
785 >        } catch (NullPointerException e) {}
786      }
787  
788      /**
# Line 794 | Line 794 | public class ConcurrentSkipListMapTest e
794              c.put("sadsdf", "asdads");
795              c.remove(null, "whatever");
796              shouldThrow();
797 <        } catch (NullPointerException e){}
797 >        } catch (NullPointerException e) {}
798      }
799  
800      /**
# Line 805 | Line 805 | public class ConcurrentSkipListMapTest e
805              ConcurrentSkipListMap c = new ConcurrentSkipListMap();
806              c.put("sadsdf", "asdads");
807              assertFalse(c.remove("sadsdf", null));
808 <        } catch (NullPointerException e){
808 >        } catch (NullPointerException e) {
809              fail();
810          }
811      }
# Line 828 | Line 828 | public class ConcurrentSkipListMapTest e
828              assertEquals(q.size(), r.size());
829              assertTrue(q.equals(r));
830              assertTrue(r.equals(q));
831 <        } catch (Exception e){
831 >        } catch (Exception e) {
832              e.printStackTrace();
833              unexpectedException();
834          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines