some debug output off

This commit is contained in:
Alex Tkachman
2011-12-03 20:58:49 +02:00
parent 1135c8ce7a
commit a145fc0afc
3 changed files with 4 additions and 4 deletions
@@ -25,7 +25,7 @@ public class JetNpeTest extends CodegenTestCase {
public void testNull () throws Exception {
loadText("fun box() = if(null.sure() == 10) \"OK\" else \"fail\"");
System.out.println(generateToText());
// System.out.println(generateToText());
Method box = generateFunction("box");
assertThrows(box, NullPointerException.class, null);
}