Skip to content

Commit 5f67596

Browse files
mickaelistriarobstryker
authored andcommitted
Fix missing import in test
1 parent d53d58d commit 5f67596

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverter15JLS4Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7796,7 +7796,7 @@ public void test0237() throws JavaModelException {
77967796
String contents =
77977797
"package test0237;\n" +
77987798
"public class X {\n" +
7799-
" Zork foo() {}\n" +
7799+
" Zork foo() {return null;}\n" +
78007800
"}";
78017801
ASTNode node = buildAST(
78027802
contents,

org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverter15JLS8Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7749,7 +7749,7 @@ public void test0237() throws JavaModelException {
77497749
String contents =
77507750
"package test0237;\n" +
77517751
"public class X {\n" +
7752-
" Zork foo() {}\n" +
7752+
" Zork foo() {return null;}\n" +
77537753
"}";
77547754
ASTNode node = buildAST(
77557755
contents,

org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverter15Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7795,7 +7795,7 @@ public void test0237() throws JavaModelException {
77957795
String contents =
77967796
"package test0237;\n" +
77977797
"public class X {\n" +
7798-
" Zork foo() {}\n" +
7798+
" Zork foo() {return null;}\n" +
77997799
"}";
78007800
ASTNode node = buildAST(
78017801
contents,

0 commit comments

Comments
 (0)