forked from External/mage
Some rework to Framework.
This commit is contained in:
parent
bdd7cc48d1
commit
32fb2507c3
101 changed files with 426 additions and 497 deletions
|
|
@ -43,9 +43,9 @@ public enum Zone {
|
|||
OUTSIDE(false),
|
||||
COMMAND(true);
|
||||
|
||||
private boolean isPublic;
|
||||
private final boolean isPublic;
|
||||
|
||||
Zone(boolean isPublic){
|
||||
Zone(boolean isPublic) {
|
||||
this.isPublic = isPublic;
|
||||
}
|
||||
|
||||
|
|
@ -61,7 +61,7 @@ public enum Zone {
|
|||
return super.toString();
|
||||
}
|
||||
|
||||
public boolean isPublicZone(){
|
||||
public boolean isPublicZone() {
|
||||
return isPublic;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue