Skip to content

Commit

Permalink
ServiceBootstrap unit test fix for java 11 (#3593)
Browse files Browse the repository at this point in the history
  • Loading branch information
vdiskg authored Mar 13, 2021
1 parent de34fe5 commit d059795
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,25 @@ public void loadPrimaryWithServiceFileButNoServiceImpl() {
ServiceBootstrap.loadPrimary(Interface7.class);
}

private interface Interface1 {
interface Interface1 {
}

public static class Interface1Impl implements Interface1 {
}

private interface Interface2 {
interface Interface2 {
}

private interface Interface3 {
interface Interface3 {
}

private interface Interface4 {
interface Interface4 {
}

private interface Interface5 {
interface Interface5 {
}

private interface Interface6 extends Ordered {
interface Interface6 extends Ordered {
}

public static class Interface6Impl1 implements Interface6 {
Expand All @@ -83,6 +83,6 @@ public int getOrder() {
}
}

private interface Interface7 extends Ordered {
interface Interface7 extends Ordered {
}
}

0 comments on commit d059795

Please sign in to comment.