Add missing `if (debug)` checks

This commit is contained in:
Daria Mayorova 2015-09-29 12:45:28 +02:00
parent 5278f316c0
commit 60201fabd3
1 changed files with 4 additions and 4 deletions

View File

@ -165,7 +165,7 @@ public class FunctionBlock extends FclObject implements Iterable<RuleBlock>, Com
if (variable == null) {
variable = new Variable(varName);
setVariable(varName, variable);
Gpr.debug("Variable '" + varName + "' does not exist => Creating it");
if (debug) Gpr.debug("Variable '" + varName + "' does not exist => Creating it");
}
//---
@ -223,7 +223,7 @@ public class FunctionBlock extends FclObject implements Iterable<RuleBlock>, Com
if (variable == null) {
variable = new Variable(varName);
setVariable(varName, variable);
Gpr.debug("Variable '" + varName + "' does not exist => Creating it");
if (debug) Gpr.debug("Variable '" + varName + "' does not exist => Creating it");
}
// Explore each sibling in this level
@ -426,7 +426,7 @@ public class FunctionBlock extends FclObject implements Iterable<RuleBlock>, Com
String leaveName = child.getText();
if (leaveName.equalsIgnoreCase("(")) numPoints++;
Gpr.debug("leaveName : " + leaveName + "\tnumPoints: " + numPoints);
if (debug) Gpr.debug("leaveName : " + leaveName + "\tnumPoints: " + numPoints);
}
// Parse multiple points (for piece-wise linear)
@ -517,7 +517,7 @@ public class FunctionBlock extends FclObject implements Iterable<RuleBlock>, Com
variable.setUniverseMax(max);
}
if (varibleExists(variable.getName())) Gpr.debug("Warning: Variable '" + variable.getName() + "' duplicated");
if (varibleExists(variable.getName())) if (debug) Gpr.debug("Warning: Variable '" + variable.getName() + "' duplicated");
else setVariable(varName, variable); // OK? => Add variable
}
}