Skip to content
Snippets Groups Projects
Commit c4da2ddb authored by uhensler's avatar uhensler
Browse files

OO-4554: Remove System.out

parent 305fe3ca
No related branches found
No related tags found
No related merge requests found
...@@ -78,10 +78,8 @@ public class CalculatedLong { ...@@ -78,10 +78,8 @@ public class CalculatedLong {
break; // stop at decimal point break; // stop at decimal point
} }
} }
System.out.println("trimmed: "+value.substring(0, len));
return value.substring(0, len); return value.substring(0, len);
} }
System.out.println("untrimmed: " + value);
return value; return value;
} }
......
...@@ -237,9 +237,7 @@ public class EvaluationFormReportDAOTest extends OlatTestCase { ...@@ -237,9 +237,7 @@ public class EvaluationFormReportDAOTest extends OlatTestCase {
} }
private Long getValue(List<CalculatedLong> calculatedLongs, String identifier, String subidentifier) { private Long getValue(List<CalculatedLong> calculatedLongs, String identifier, String subidentifier) {
System.out.println("Wanted: " + identifier + "/" + subidentifier);
for (CalculatedLong calculatedLong: calculatedLongs) { for (CalculatedLong calculatedLong: calculatedLongs) {
System.out.println("has: " + calculatedLong.getIdentifier() + "/" + calculatedLong.getSubIdentifier() + " = " + calculatedLong.getValue());
if (calculatedLong.getIdentifier().equals(identifier) && calculatedLong.getSubIdentifier().equals(subidentifier)) { if (calculatedLong.getIdentifier().equals(identifier) && calculatedLong.getSubIdentifier().equals(subidentifier)) {
return calculatedLong.getValue(); return calculatedLong.getValue();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment