[CI-SKIP] Cleanup

This commit is contained in:
Sotr
2018-07-27 08:51:26 +08:00
parent 032ffea438
commit 3d34b1e011
2 changed files with 0 additions and 7 deletions

View File

@@ -25,6 +25,4 @@ public interface IMixinChunk {
void setNeighborChunk(int index, @Nullable Chunk chunk);
void setLightUpdateTime(long time);
void setPendingLightUpdate();
}

View File

@@ -108,11 +108,6 @@ public abstract class MixinChunk implements IMixinChunk {
return this.pendingLightUpdates;
}
@Override
public void setPendingLightUpdate() {
this.isLightPopulated = false;
}
@Override
public long getLightUpdateTime() {
return this.lightUpdateTime;