Removed two java5 compile errors.
This commit is contained in:
parent
36cf1280e4
commit
4df84d6794
|
@ -82,7 +82,7 @@ public class X4ODebugWriterTest extends TestCase {
|
||||||
assertTrue("Debug file does not exists.",debugFile.exists());
|
assertTrue("Debug file does not exists.",debugFile.exists());
|
||||||
String debug = readFile(debugFile);
|
String debug = readFile(debugFile);
|
||||||
assertNotNull(debug);
|
assertNotNull(debug);
|
||||||
assertFalse("no debug content",debug.isEmpty());
|
assertFalse("no debug content",debug.length()==0);
|
||||||
assertTrue("debug content to small",debug.length()>20);
|
assertTrue("debug content to small",debug.length()>20);
|
||||||
|
|
||||||
//System.out.println("=================== Reader Output ======================");
|
//System.out.println("=================== Reader Output ======================");
|
||||||
|
@ -104,7 +104,7 @@ public class X4ODebugWriterTest extends TestCase {
|
||||||
assertTrue("Debug file does not exists.",debugFile.exists());
|
assertTrue("Debug file does not exists.",debugFile.exists());
|
||||||
String debug = readFile(debugFile);
|
String debug = readFile(debugFile);
|
||||||
assertNotNull(debug);
|
assertNotNull(debug);
|
||||||
assertFalse("no debug content",debug.isEmpty());
|
assertFalse("no debug content",debug.length()==0);
|
||||||
assertTrue("debug content to small",debug.length()>20);
|
assertTrue("debug content to small",debug.length()>20);
|
||||||
|
|
||||||
//System.out.println("=================== Writer Output ======================");
|
//System.out.println("=================== Writer Output ======================");
|
||||||
|
|
Loading…
Reference in a new issue