dont think the synchronized is needed

This commit is contained in:
PhanaticD 2019-11-20 14:07:02 -05:00
parent d284b69572
commit e5957a1a66
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ public class CalcIslandLevel {
}
private synchronized void addChunkQueue(Chunk ch) {
private void addChunkQueue(Chunk ch) {
q.add(ch);
}