Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix MoveMembersTest failures due to moving to Java 1.8 as min version #1547

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -674,9 +674,7 @@ public void testFail18() throws Exception{

@Test
public void testFail19() throws Exception{
fieldMethodTypeHelper_failing(new String[0],
new String[]{"m"}, new String[][]{new String[0]}, new String[0],
RefactoringStatus.ERROR, "p.B");
// no longer failure due to min JDK 1.8...move static to interface tested in MoveMemberTest1d8
}

@Test
Expand All @@ -686,9 +684,7 @@ public void testFail20() throws Exception{

@Test
public void testFail21() throws Exception{
fieldMethodTypeHelper_failing(new String[0],
new String[]{"m"}, new String[][]{new String[0]}, new String[0],
RefactoringStatus.FATAL, "p.B");
// no longer failure due to min JDK 1.8...move static to interface tested in MoveMemberTest1d8
}

// Issue 1299
Expand Down
Loading