Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test476/A_in.js')
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test476/A_in.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test476/A_in.js b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test476/A_in.js
deleted file mode 100644
index 6ee1004..0000000
--- a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test476/A_in.js
+++ /dev/null
@@ -1,30 +0,0 @@
-import java.awt.*;
-
-public class FormatTest
- {
-
- /************************************
- * method_one
- *
- * nothing special.
- ************************************/
-
- public void method_one()
- {
- int i = 1;
-
- int j = 2;
-
- for ( i = 12; i < 100; i++ )
- {
- if ( i % 2 == 0 )
- System.out.println( "xx" );
- else
- System.out.println( "yy" );
-
- j = 0;
- }
-
- } // method_one
-
- } // class FormatTest \ No newline at end of file

Back to the top