Fixed clear() in SWGSet

This commit is contained in:
Treeku
2014-05-31 13:50:12 +01:00
parent f8dd851629
commit 7744f43d66
+1
View File
@@ -117,6 +117,7 @@ public class SWGSet<E> implements Set<E>, Serializable {
public void clear() {
synchronized(objectMutex) {
set.clear();
queue(item(2, null, null, false, false));
}
}