@@ -146,7 +146,7 @@ public String toString() {
146
146
}
147
147
148
148
@ SuppressWarnings ("serial" ) // JDK implementation class
149
- abstract class ArgumentImpl implements Connector .Argument , Cloneable {
149
+ abstract static class ArgumentImpl implements Connector .Argument , Cloneable {
150
150
private String name ;
151
151
private String label ;
152
152
private String description ;
@@ -275,7 +275,7 @@ public boolean booleanValue() {
275
275
}
276
276
}
277
277
278
- class IntegerArgumentImpl extends ConnectorImpl .ArgumentImpl
278
+ static class IntegerArgumentImpl extends ConnectorImpl .ArgumentImpl
279
279
implements Connector .IntegerArgument {
280
280
private static final long serialVersionUID = 763286081923797770L ;
281
281
private final int min ;
@@ -376,7 +376,7 @@ public int min() {
376
376
}
377
377
}
378
378
379
- class StringArgumentImpl extends ConnectorImpl .ArgumentImpl
379
+ static class StringArgumentImpl extends ConnectorImpl .ArgumentImpl
380
380
implements Connector .StringArgument {
381
381
private static final long serialVersionUID = 7500484902692107464L ;
382
382
StringArgumentImpl (String name , String label , String description ,
@@ -393,7 +393,7 @@ public boolean isValid(String value) {
393
393
}
394
394
}
395
395
396
- class SelectedArgumentImpl extends ConnectorImpl .ArgumentImpl
396
+ static class SelectedArgumentImpl extends ConnectorImpl .ArgumentImpl
397
397
implements Connector .SelectedArgument {
398
398
private static final long serialVersionUID = -5689584530908382517L ;
399
399
@ SuppressWarnings ("serial" ) // Type of field is not Serializable
0 commit comments