ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ConcurrentLinkedDeque.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ConcurrentLinkedDeque.java (file contents):
Revision 1.58 by jsr166, Wed Dec 31 09:37:20 2014 UTC vs.
Revision 1.59 by jsr166, Sun Jan 4 01:06:15 2015 UTC

# Line 311 | Line 311 | public class ConcurrentLinkedDeque<E>
311                      (k.getDeclaredField("item"));
312                  nextOffset = UNSAFE.objectFieldOffset
313                      (k.getDeclaredField("next"));
314 <            } catch (Exception e) {
314 >            } catch (ReflectiveOperationException e) {
315                  throw new Error(e);
316              }
317          }
# Line 1568 | Line 1568 | public class ConcurrentLinkedDeque<E>
1568                  (k.getDeclaredField("head"));
1569              tailOffset = UNSAFE.objectFieldOffset
1570                  (k.getDeclaredField("tail"));
1571 <        } catch (Exception e) {
1571 >        } catch (ReflectiveOperationException e) {
1572              throw new Error(e);
1573          }
1574      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines