--- jsr166/src/test/tck/ConcurrentHashMap8Test.java 2015/02/27 21:03:10 1.24 +++ jsr166/src/test/tck/ConcurrentHashMap8Test.java 2015/02/27 21:05:11 1.25 @@ -275,7 +275,7 @@ public class ConcurrentHashMap8Test exte try { full.add(three); shouldThrow(); - } catch (UnsupportedOperationException e){} + } catch (UnsupportedOperationException success) {} } /** @@ -287,7 +287,7 @@ public class ConcurrentHashMap8Test exte try { full.add(null); shouldThrow(); - } catch (NullPointerException e){} + } catch (NullPointerException success) {} } /**