Skip to content
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.

Commit

Permalink
Thinking about more access optimization...
Browse files Browse the repository at this point in the history
  • Loading branch information
robotia committed Mar 24, 2016
1 parent bbfee34 commit 245d5b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/thermos/wrapper/ChunkBlockHashMap.java
Expand Up @@ -97,13 +97,13 @@ public void put(Chunk chunk)
temp_chunk_bunch[chunk_array(x)][chunk_array(z)] = chunk;
this.map.put(chunk_hash(x >> 4, z >> 4), temp_chunk_bunch); //Thermos - IntHash
}
if ( chunk != null)
/*if ( chunk != null)
{
last4 = last3;
last3 = last2;
last2 = last1;
last1 = chunk;
}
}*/
}

public void remove(Chunk chunk)
Expand Down

0 comments on commit 245d5b7

Please sign in to comment.