@@ -10,10 +10,10 @@ abstract class JoinpointException extends RuntimeException {
1010
1111 public abstract Text message (ECText ecText );
1212
13- private static abstract class Tp extends JoinpointException {
13+ private abstract static class Tp extends JoinpointException {
1414 private final String ownerName ;
1515
16- public Tp (String ownerName ) {
16+ Tp (String ownerName ) {
1717 this .ownerName = ownerName ;
1818 }
1919
@@ -22,10 +22,10 @@ public String getOwnerName() {
2222 }
2323 }
2424
25- private static abstract class WithName extends Tp {
25+ private abstract static class WithName extends Tp {
2626 private final String joinpointName ;
2727
28- public WithName (String joinpointName , String ownerName ) {
28+ WithName (String joinpointName , String ownerName ) {
2929 super (ownerName );
3030 this .joinpointName = joinpointName ;
3131 }
@@ -36,7 +36,7 @@ public String getJoinpointName() {
3636 }
3737
3838 static final class TpNotFound extends WithName {
39- public TpNotFound (String joinpointName , String ownerName ) {
39+ TpNotFound (String joinpointName , String ownerName ) {
4040 super (joinpointName , ownerName );
4141 }
4242
@@ -52,7 +52,7 @@ public Text message(ECText ecText) {
5252 }
5353
5454 static final class TpNoAccess extends WithName {
55- public TpNoAccess (String joinpointName , String ownerName ) {
55+ TpNoAccess (String joinpointName , String ownerName ) {
5656 super (joinpointName , ownerName );
5757 }
5858
@@ -68,7 +68,7 @@ public Text message(ECText ecText) {
6868 }
6969
7070 static final class OwnerNotFound extends Tp {
71- public OwnerNotFound (String ownerName ) {
71+ OwnerNotFound (String ownerName ) {
7272 super (ownerName );
7373 }
7474
@@ -82,10 +82,10 @@ public Text message(ECText ecText) {
8282 }
8383 }
8484
85- static abstract class Share extends JoinpointException {
85+ abstract static class Share extends JoinpointException {
8686 private final String joinpointName ;
8787
88- public Share (String joinpointName ) {
88+ Share (String joinpointName ) {
8989 this .joinpointName = joinpointName ;
9090 }
9191
@@ -95,7 +95,7 @@ public String getJoinpointName() {
9595 }
9696
9797 static final class NotFound extends Share {
98- public NotFound (String joinpointName ) {
98+ NotFound (String joinpointName ) {
9999 super (joinpointName );
100100 }
101101
@@ -110,7 +110,7 @@ public Text message(ECText ecText) {
110110 }
111111
112112 static final class AlreadyGlobal extends Share {
113- public AlreadyGlobal (String joinpointName ) {
113+ AlreadyGlobal (String joinpointName ) {
114114 super (joinpointName );
115115 }
116116
@@ -125,7 +125,7 @@ public Text message(ECText ecText) {
125125 }
126126
127127 static final class NoNewPlayers extends Share {
128- public NoNewPlayers (String joinpointName ) {
128+ NoNewPlayers (String joinpointName ) {
129129 super (joinpointName );
130130 }
131131
@@ -139,7 +139,7 @@ public Text message(ECText ecText) {
139139 }
140140
141141 static final class PlayersNotShared extends Share {
142- public PlayersNotShared (String joinpointName ) {
142+ PlayersNotShared (String joinpointName ) {
143143 super (joinpointName );
144144 }
145145
@@ -153,7 +153,7 @@ public Text message(ECText ecText) {
153153 }
154154
155155 static final class CannotClearGlobal extends Share {
156- public CannotClearGlobal (String joinpointName ) {
156+ CannotClearGlobal (String joinpointName ) {
157157 super (joinpointName );
158158 }
159159
@@ -167,10 +167,10 @@ public Text message(ECText ecText) {
167167 }
168168 }
169169
170- static abstract class Set extends JoinpointException {
170+ abstract static class Set extends JoinpointException {
171171 private final String joinpointName ;
172172
173- public Set (String joinpointName ) {
173+ Set (String joinpointName ) {
174174 this .joinpointName = joinpointName ;
175175 }
176176
@@ -179,7 +179,7 @@ public String getJoinpointName() {
179179 }
180180
181181 static final class DeleteNotFound extends Set {
182- public DeleteNotFound (String joinpointName ) {
182+ DeleteNotFound (String joinpointName ) {
183183 super (joinpointName );
184184 }
185185
@@ -194,7 +194,7 @@ public Text message(ECText ecText) {
194194 }
195195
196196 static final class DeleteGeneric extends Set {
197- public DeleteGeneric (String joinpointName ) {
197+ DeleteGeneric (String joinpointName ) {
198198 super (joinpointName );
199199 }
200200
@@ -213,7 +213,7 @@ static final class MaxPointsExceeded extends Set {
213213 private final int current ;
214214 private final JoinpointLimit .JoinpointType limitType ;
215215
216- public MaxPointsExceeded (String joinpointName , int max , int current , JoinpointLimit .JoinpointType limitType ) {
216+ MaxPointsExceeded (String joinpointName , int max , int current , JoinpointLimit .JoinpointType limitType ) {
217217 super (joinpointName );
218218 this .max = max ;
219219 this .current = current ;
0 commit comments