--- jsr166/src/test/loops/SMap.java 2005/05/09 19:33:30 1.2 +++ jsr166/src/test/loops/SMap.java 2011/03/15 19:47:05 1.5 @@ -1,7 +1,7 @@ /* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at - * http://creativecommons.org/licenses/publicdomain + * http://creativecommons.org/publicdomain/zero/1.0/ */ import java.util.*; import java.util.concurrent.*; @@ -22,14 +22,14 @@ public class SMap implements Map { this.m = m; } - public SMap() { + public SMap() { this(new TreeMap()); // use TreeMap by default } public synchronized int size() { return m.size(); } - public synchronized boolean isEmpty(){ + public synchronized boolean isEmpty() { return m.isEmpty(); } @@ -40,7 +40,7 @@ public class SMap implements Map { public synchronized boolean containsKey(Object key) { return m.containsKey(key); } - public synchronized boolean containsValue(Object value){ + public synchronized boolean containsValue(Object value) { return m.containsValue(value); } @@ -48,15 +48,15 @@ public class SMap implements Map { public synchronized Set keySet() { // Not implemented return m.keySet(); } - + public synchronized Set entrySet() { // Not implemented return m.entrySet(); } - + public synchronized Collection values() { // Not implemented return m.values(); } - + public synchronized boolean equals(Object o) { return m.equals(o); } @@ -81,5 +81,5 @@ public class SMap implements Map { public synchronized void clear() { m.clear(); } - + }