Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468')
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468/A_in.js13
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468/A_out.js18
2 files changed, 0 insertions, 31 deletions
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468/A_in.js b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468/A_in.js
deleted file mode 100644
index 7ff22eb..0000000
--- a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468/A_in.js
+++ /dev/null
@@ -1,13 +0,0 @@
-class Foo {
- class Bar {
- }
-
- void foo() {
- Bar obj = new Bar() {
- public void bar() {
- // Here is the problem.
- return;
- }
- };
- }
-} \ No newline at end of file
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468/A_out.js b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468/A_out.js
deleted file mode 100644
index c8f03a5..0000000
--- a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test468/A_out.js
+++ /dev/null
@@ -1,18 +0,0 @@
-class Foo
-{
- class Bar
- {
- }
-
- void foo()
- {
- Bar obj = new Bar()
- {
- public void bar()
- {
- // Here is the problem.
- return;
- }
- };
- }
-} \ No newline at end of file

Back to the top