Skip to content
Snippets Groups Projects
Commit 0f39e8bb authored by david_williams's avatar david_williams
Browse files

remove excess printlns

parent 6ab713c7
No related branches found
No related tags found
No related merge requests found
......@@ -184,7 +184,7 @@ public class VersionLister implements IPlatformRunnable {
}
someCommandExecuted = true;
exitResult = exitResult | doTestToReference(referenceId, referenceFilename, buildLabel);
System.out.println("exitResult: " + exitResult);
//System.out.println("exitResult: " + exitResult);
// minor error in arguments
if (!someCommandExecuted) {
......@@ -256,9 +256,9 @@ public class VersionLister implements IPlatformRunnable {
currMap = makeFeatureMap();
checkingType = "feature";
int feature_return = _compareReferenceAndCurrent(currMap, refMap, checkingType, ERROR_FEATURE_DECREASE, reportWriter);
System.out.println("feature_return: " + feature_return);
//System.out.println("feature_return: " + feature_return);
exit_code = exit_code | feature_return;
System.out.println("exit_code: " + exit_code);
//System.out.println("exit_code: " + exit_code);
reportWriter.write("</versioningReportData>" + EOL);
reportWriter.write("</versioningReport>" + EOL);
......
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