@@ -87,7 +87,7 @@ public static void afterClass() {
87
87
/**
88
88
* Valid call with an assertion message.
89
89
*/
90
- private static class ValidAssertUsage1 extends TestPhase {
90
+ private static final class ValidAssertUsage1 extends TestPhase {
91
91
@ Override
92
92
protected void run (StructuredGraph graph ) {
93
93
assert graph .hasLoops () : "Must have loops" ;
@@ -98,7 +98,7 @@ protected void run(StructuredGraph graph) {
98
98
* Valid call with a trivial condition. Null check is trivial in that if it fails the error is
99
99
* "clear" to spot by inspecting the code.
100
100
*/
101
- private static class ValidAssertUsage2 extends TestPhase {
101
+ private static final class ValidAssertUsage2 extends TestPhase {
102
102
@ Override
103
103
protected void run (StructuredGraph graph ) {
104
104
assert graph != null ;
@@ -108,7 +108,7 @@ protected void run(StructuredGraph graph) {
108
108
/**
109
109
* Valid usage of known assertion methods that are always safe to call.
110
110
*/
111
- private static class ValidAssertUsage3 extends TestPhase {
111
+ private static final class ValidAssertUsage3 extends TestPhase {
112
112
@ Override
113
113
protected void run (StructuredGraph graph ) {
114
114
assert GraphOrder .assertSchedulableGraph (graph );
@@ -119,7 +119,7 @@ protected void run(StructuredGraph graph) {
119
119
/**
120
120
* Invalid assertion call: missing assertion message.
121
121
*/
122
- private static class InvalidAssertUsage extends TestPhase {
122
+ private static final class InvalidAssertUsage extends TestPhase {
123
123
@ Override
124
124
protected void run (StructuredGraph graph ) {
125
125
assert graph .hasLoops ();
@@ -131,7 +131,7 @@ protected void run(StructuredGraph graph) {
131
131
* further but call further eventually calls a method with an assertion error message so the
132
132
* assertion usage is correct several levels down the call graph.
133
133
*/
134
- private static class ValidCallGraphUsage1 extends TestPhase {
134
+ private static final class ValidCallGraphUsage1 extends TestPhase {
135
135
@ Override
136
136
protected void run (StructuredGraph graph ) {
137
137
assert verifyGraph (graph );
@@ -160,7 +160,7 @@ private static boolean callFurther1(StructuredGraph g) {
160
160
* Invalid call: call further is missing the assertion message and run calls callFurther so this
161
161
* is a missing assertion message 1 level down the call graph.
162
162
*/
163
- private static class InvalidCallGraphUsage1 extends TestPhase {
163
+ private static final class InvalidCallGraphUsage1 extends TestPhase {
164
164
@ Override
165
165
protected void run (StructuredGraph graph ) {
166
166
assert callFurther (graph );
@@ -182,7 +182,7 @@ private static boolean callFurther(StructuredGraph g) {
182
182
* Invalid call graph usage: multiple calls to methods without an error message a second level
183
183
* down the call graph.
184
184
*/
185
- private static class InvalidCallGraphUsage2 extends TestPhase {
185
+ private static final class InvalidCallGraphUsage2 extends TestPhase {
186
186
@ Override
187
187
protected void run (StructuredGraph graph ) {
188
188
assert callFurther (graph );
@@ -207,7 +207,7 @@ private static boolean callFurther(StructuredGraph g) {
207
207
* superfluous: callFurther does assertion checking and will always return true - thus the error
208
208
* message in run is never used.
209
209
*/
210
- private static class InvalidCallGraphUsage3 extends TestPhase {
210
+ private static final class InvalidCallGraphUsage3 extends TestPhase {
211
211
@ Override
212
212
protected void run (StructuredGraph graph ) {
213
213
assert callFurther (graph ) : "Invalid superfluous message" ;
@@ -235,7 +235,7 @@ private static boolean callFurther1(StructuredGraph g) {
235
235
/**
236
236
* Same as {@link InvalidCallGraphUsage3} but without multiple levels.
237
237
*/
238
- private static class InvalidCallGraphUsage31 extends TestPhase {
238
+ private static final class InvalidCallGraphUsage31 extends TestPhase {
239
239
@ Override
240
240
protected void run (StructuredGraph graph ) {
241
241
assert verifyGraph (graph ) : "Invalid superfluous message" ;
@@ -254,7 +254,7 @@ private static boolean verifyGraph(StructuredGraph graph) {
254
254
* the caller. Specifically assertSth has a return false path that would fire the error in the
255
255
* caller run without a message.
256
256
*/
257
- private static class InvalidCallGraphUsage4 extends TestPhase {
257
+ private static final class InvalidCallGraphUsage4 extends TestPhase {
258
258
@ Override
259
259
protected void run (StructuredGraph graph ) {
260
260
assert assertSth (graph );
@@ -282,7 +282,7 @@ private static boolean assertSth1(StructuredGraph g) {
282
282
/**
283
283
* Invalid assertion usage: the path doSth() does not assert anything.
284
284
*/
285
- private static class InvalidCallGraphUsage5 extends TestPhase {
285
+ private static final class InvalidCallGraphUsage5 extends TestPhase {
286
286
@ Override
287
287
protected void run (StructuredGraph graph ) {
288
288
assert assertSth (graph );
@@ -304,7 +304,7 @@ static void doSth() {
304
304
* - the paths where they are missing them is loop iterations so those are fine. They still
305
305
* return {@code true} on all paths.
306
306
*/
307
- private static class ValidCallGraphUsage5 extends TestPhase {
307
+ private static final class ValidCallGraphUsage5 extends TestPhase {
308
308
@ Override
309
309
protected void run (StructuredGraph graph ) {
310
310
assert assertSth (graph );
@@ -339,7 +339,7 @@ private static boolean assertSth2(StructuredGraph g) {
339
339
* Correct assertion usage: calling another method not via an assert but regularly where that
340
340
* method itself calls an assertion.
341
341
*/
342
- private static class ValidCallGraphUsage6 extends TestPhase {
342
+ private static final class ValidCallGraphUsage6 extends TestPhase {
343
343
@ Override
344
344
protected void run (StructuredGraph graph ) {
345
345
assert assertSth (graph );
0 commit comments