Permission node cleanup and removal of the commented out deprecated API.

This commit is contained in:
Olof Larsson
2013-04-24 16:10:16 +02:00
parent da2cc0f052
commit 9b932cb1c6
5 changed files with 121 additions and 220 deletions

View File

@ -84,7 +84,7 @@ public enum FFlag
}
// -------------------------------------------- //
// FRODOODODFOFL
// PARSE
// -------------------------------------------- //
public static FFlag parse(String str)
@ -103,6 +103,10 @@ public enum FFlag
return null;
}
// -------------------------------------------- //
// UTIL
// -------------------------------------------- //
public String getStateInfo(boolean value, boolean withDesc)
{
String ret = (value ? "<g>YES" : "<b>NOO") + "<c> " + this.getNicename();
@ -113,6 +117,4 @@ public enum FFlag
return ret;
}
}