Initial stab at 1.11
About halfway.
This commit is contained in:
parent
ce52aea512
commit
00d6f8eb46
157 changed files with 1036 additions and 1554 deletions
|
@ -29,13 +29,7 @@ public class WillChunk
|
|||
this.currentWill = currentWill;
|
||||
}
|
||||
|
||||
public boolean isModified()
|
||||
{
|
||||
if ((this.chunkRef != null) && (this.chunkRef.get() != null))
|
||||
{
|
||||
return ((Chunk) this.chunkRef.get()).needsSaving(false);
|
||||
}
|
||||
|
||||
return false;
|
||||
public boolean isModified() {
|
||||
return (this.chunkRef != null) && (this.chunkRef.get() != null) && this.chunkRef.get().needsSaving(false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue