Merge pull request #3850 from JakubValtar/remove-debug-message

Remove color debug message
This commit is contained in:
Ben Fry
2015-09-21 23:32:35 -04:00

View File

@@ -210,16 +210,16 @@ public class XQPreprocessor {
// }
/**
* This is added just for debugging purposes - to make sure that all
* instances of color type have been substituded as in by the regex
* search in ErrorCheckerService.preprocessCode().
*/
public boolean visit(SimpleType node) {
if (node.toString().equals("color")) {
System.err.println("Color type detected: please report as an issue.");
}
return true;
}
// /**
// * This is added just for debugging purposes - to make sure that all
// * instances of color type have been substituded as in by the regex
// * search in ErrorCheckerService.preprocessCode().
// */
// public boolean visit(SimpleType node) {
// if (node.toString().equals("color")) {
// System.err.println("Color type detected: please report as an issue.");
// }
// return true;
// }
}
}