|
@@ -88,7 +88,7 @@ public class LightWeightHashSet<T> implements Collection<T> {
|
|
|
*
|
|
|
* @see ConcurrentModificationException
|
|
|
*/
|
|
|
- protected volatile int modification = 0;
|
|
|
+ protected int modification = 0;
|
|
|
|
|
|
private float maxLoadFactor;
|
|
|
private float minLoadFactor;
|
|
@@ -634,4 +634,4 @@ public class LightWeightHashSet<T> implements Collection<T> {
|
|
|
public boolean retainAll(Collection<?> c) {
|
|
|
throw new UnsupportedOperationException("retainAll is not supported.");
|
|
|
}
|
|
|
-}
|
|
|
+}
|