1
0
mirror of synced 2026-08-06 10:18:52 +00:00

Move inner-types so that they are always last

Move all inner-types so that they are consistently the last item
defined. This aligns with the style used by Spring Framework and
the consistency generally makes it easier to scan the source.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-07-26 13:35:03 -07:00
committed by Rob Winch
parent 418c3d6808
commit a2f2e9ac8d
163 changed files with 10287 additions and 10332 deletions
@@ -57,6 +57,14 @@ public class ReactorContextTestExecutionListener extends DelegatingTestExecution
};
}
/**
* Returns {@code 11000}.
*/
@Override
public int getOrder() {
return 11000;
}
private static class DelegateTestExecutionListener extends AbstractTestExecutionListener {
@Override
@@ -124,12 +132,4 @@ public class ReactorContextTestExecutionListener extends DelegatingTestExecution
}
/**
* Returns {@code 11000}.
*/
@Override
public int getOrder() {
return 11000;
}
}