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

Comparing jsr166/src/test/tck/LinkedTransferQueueTest.java (file contents):
Revision 1.14 by jsr166, Sat Aug 15 03:20:36 2009 UTC vs.
Revision 1.15 by jsr166, Sat Nov 21 17:38:05 2009 UTC

# Line 886 | Line 886 | public class LinkedTransferQueueTest ext
886              LinkedTransferQueue q = new LinkedTransferQueue();
887              q.transfer(null);
888              shouldThrow();
889 <        } catch (NullPointerException ex) {
890 <        }
889 >        } catch (NullPointerException success) {}
890      }
891  
892      /**
# Line 994 | Line 993 | public class LinkedTransferQueueTest ext
993              final LinkedTransferQueue q = new LinkedTransferQueue();
994              q.tryTransfer(null);
995              shouldThrow();
996 <        } catch (NullPointerException ex) {
998 <        }
996 >        } catch (NullPointerException success) {}
997      }
998  
999      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines