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

Comparing jsr166/src/main/java/util/AbstractMap.java (file contents):
Revision 1.10 by jsr166, Mon May 16 05:03:18 2005 UTC vs.
Revision 1.11 by jsr166, Tue May 17 04:03:50 2005 UTC

# Line 468 | Line 468 | public abstract class AbstractMap<K,V> i
468       * appended.  Finally a right brace is appended.  A string is obtained
469       * from the stringbuffer, and returned.
470       *
471 <     * @return a String representation of this map.
471 >     * @return a String representation of this map
472       */
473      public String toString() {
474          StringBuffer buf = new StringBuffer();
# Line 555 | Line 555 | public abstract class AbstractMap<K,V> i
555           * Creates an entry representing the same mapping as the
556           * specified entry.
557           *
558 <         * @param entry the entry to copy.
558 >         * @param entry the entry to copy
559           */
560          public SimpleEntry(Entry<? extends K, ? extends V> entry) {
561              this.key   = entry.getKey();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines