mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Fix incorrect Collections#unmodifiableSet usage
This commit is contained in:
parent
09ba78d1e9
commit
f88432a709
@ -196,11 +196,11 @@ public class FAWEWorldNativeAccess_1_15_2 implements WorldNativeAccess<Chunk, IB
|
||||
}
|
||||
|
||||
private synchronized void flushAsync(final boolean sendChunks) {
|
||||
final Set<CachedChange> changes = Collections.unmodifiableSet(cachedChanges);
|
||||
final Set<CachedChange> changes = Collections.unmodifiableSet(new HashSet<>(cachedChanges));
|
||||
cachedChanges.clear();
|
||||
final Set<IntPair> toSend;
|
||||
if (sendChunks) {
|
||||
toSend = Collections.unmodifiableSet(cachedChunksToSend);
|
||||
toSend = Collections.unmodifiableSet(new HashSet<>(cachedChunksToSend));
|
||||
cachedChunksToSend.clear();
|
||||
} else {
|
||||
toSend = Collections.emptySet();
|
||||
|
@ -197,11 +197,11 @@ public class FAWEWorldNativeAccess_1_16_R1 implements WorldNativeAccess<Chunk, I
|
||||
}
|
||||
|
||||
private synchronized void flushAsync(final boolean sendChunks) {
|
||||
final Set<CachedChange> changes = Collections.unmodifiableSet(cachedChanges);
|
||||
final Set<CachedChange> changes = Collections.unmodifiableSet(new HashSet<>(cachedChanges));
|
||||
cachedChanges.clear();
|
||||
final Set<IntPair> toSend;
|
||||
if (sendChunks) {
|
||||
toSend = Collections.unmodifiableSet(cachedChunksToSend);
|
||||
toSend = Collections.unmodifiableSet(new HashSet<>(cachedChunksToSend));
|
||||
cachedChunksToSend.clear();
|
||||
} else {
|
||||
toSend = Collections.emptySet();
|
||||
|
@ -197,11 +197,11 @@ public class FAWEWorldNativeAccess_1_16_R2 implements WorldNativeAccess<Chunk, I
|
||||
}
|
||||
|
||||
private synchronized void flushAsync(final boolean sendChunks) {
|
||||
final Set<CachedChange> changes = Collections.unmodifiableSet(cachedChanges);
|
||||
final Set<CachedChange> changes = Collections.unmodifiableSet(new HashSet<>(cachedChanges));
|
||||
cachedChanges.clear();
|
||||
final Set<IntPair> toSend;
|
||||
if (sendChunks) {
|
||||
toSend = Collections.unmodifiableSet(cachedChunksToSend);
|
||||
toSend = Collections.unmodifiableSet(new HashSet<>(cachedChunksToSend));
|
||||
cachedChunksToSend.clear();
|
||||
} else {
|
||||
toSend = Collections.emptySet();
|
||||
|
@ -196,11 +196,11 @@ public class FAWEWorldNativeAccess_1_16_R3 implements WorldNativeAccess<Chunk, I
|
||||
}
|
||||
|
||||
private synchronized void flushAsync(final boolean sendChunks) {
|
||||
final Set<CachedChange> changes = Collections.unmodifiableSet(cachedChanges);
|
||||
final Set<CachedChange> changes = Collections.unmodifiableSet(new HashSet<>(cachedChanges));
|
||||
cachedChanges.clear();
|
||||
final Set<IntPair> toSend;
|
||||
if (sendChunks) {
|
||||
toSend = Collections.unmodifiableSet(cachedChunksToSend);
|
||||
toSend = Collections.unmodifiableSet(new HashSet<>(cachedChunksToSend));
|
||||
cachedChunksToSend.clear();
|
||||
} else {
|
||||
toSend = Collections.emptySet();
|
||||
|
Loading…
Reference in New Issue
Block a user