Skip to content

Commit

Permalink
Remove some debug messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
aufdemrand committed Aug 17, 2013
1 parent d09ef84 commit 4299b40
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/main/java/net/aufdemrand/denizen/objects/dList.java
Expand Up @@ -70,7 +70,6 @@ public static boolean matches(String arg) {
if (m.matches()) return true;

if (arg.contains("|") || arg.toLowerCase().startsWith("li@")) {
dB.log(arg + " is a list.");
return true;
}

Expand Down
Expand Up @@ -93,8 +93,6 @@ public boolean execute(ScriptEntry scriptEntry) {

for (aH.Argument arg : aH.interpret(scriptEntry.getArguments())) {

dB.log("arg " + arg.raw_value);

if (arg.getValue().equals("{")) nested_depth++;
if (arg.getValue().equals("}")) nested_depth--;

Expand Down
Expand Up @@ -28,8 +28,6 @@ public void parseArgs(ScriptEntry scriptEntry) throws InvalidArgumentsException

for (aH.Argument arg : aH.interpret(scriptEntry.getArguments())) {

dB.log(arg.raw_value);

// A duration on a flag will set it to expire after the
// specified amount of time
if (!scriptEntry.hasObject("duration")
Expand Down Expand Up @@ -71,7 +69,6 @@ else if (!scriptEntry.hasObject("flag_target")
// Check if setting a boolean
else if (!scriptEntry.hasObject("action")
&& arg.raw_value.split(":", 3).length == 1) {
dB.echoDebug("boolean -> " + arg.raw_value);
scriptEntry.addObject("action", FlagManager.Action.SET_BOOLEAN);
scriptEntry.addObject("flag_name", arg.asElement());
}
Expand Down

0 comments on commit 4299b40

Please sign in to comment.