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

Comparing jsr166/src/jsr166e/DoubleMaxUpdater.java (file contents):
Revision 1.3 by jsr166, Sat Sep 10 01:44:53 2011 UTC vs.
Revision 1.5 by jsr166, Sun Nov 18 03:07:22 2012 UTC

# Line 24 | Line 24 | import java.io.ObjectOutputStream;
24   * collection keys.
25   *
26   * <p><em>jsr166e note: This class is targeted to be placed in
27 < * java.util.concurrent.atomic<em>
27 > * java.util.concurrent.atomic.</em>
28   *
29   * @since 1.8
30   * @author Doug Lea
# Line 157 | Line 157 | public class DoubleMaxUpdater extends St
157  
158      /**
159       * Returns the {@link #max} as a {@code long} after a
160 <     * primitive conversion.
160 >     * narrowing primitive conversion.
161       */
162      public long longValue() {
163          return (long)max();
# Line 165 | Line 165 | public class DoubleMaxUpdater extends St
165  
166      /**
167       * Returns the {@link #max} as an {@code int} after a
168 <     * primitive conversion.
168 >     * narrowing primitive conversion.
169       */
170      public int intValue() {
171          return (int)max();
# Line 173 | Line 173 | public class DoubleMaxUpdater extends St
173  
174      /**
175       * Returns the {@link #max} as a {@code float}
176 <     * after a primitive conversion.
176 >     * after a narrowing primitive conversion.
177       */
178      public float floatValue() {
179          return (float)max();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines