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

Comparing jsr166/src/jsr166e/LongAdder.java (file contents):
Revision 1.12 by jsr166, Sun Jan 6 18:50:00 2013 UTC vs.
Revision 1.13 by jsr166, Mon Jan 7 07:14:01 2013 UTC

# Line 6 | Line 6
6  
7   package jsr166e;
8   import java.util.concurrent.atomic.AtomicLong;
9 import java.io.IOException;
9   import java.io.Serializable;
11 import java.io.ObjectInputStream;
12 import java.io.ObjectOutputStream;
10  
11   /**
12   * One or more variables that together maintain an initially zero
# Line 191 | Line 188 | public class LongAdder extends Striped64
188          s.writeLong(sum());
189      }
190  
191 <    private void readObject(ObjectInputStream s)
192 <        throws IOException, ClassNotFoundException {
191 >    private void readObject(java.io.ObjectInputStream s)
192 >        throws java.io.IOException, ClassNotFoundException {
193          s.defaultReadObject();
194          busy = 0;
195          cells = null;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines