Ensure classes are defined in their own files
Ensure that all classes are defined in their own files. Mostly classes have been changed to inner-types. Issue gh-8945
This commit is contained in:
@@ -611,12 +611,12 @@ public final class Base64 {
|
||||
return out;
|
||||
}
|
||||
|
||||
}
|
||||
static class InvalidBase64CharacterException extends IllegalArgumentException {
|
||||
|
||||
class InvalidBase64CharacterException extends IllegalArgumentException {
|
||||
InvalidBase64CharacterException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
InvalidBase64CharacterException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user