@@ -1232,7 +1232,7 @@ Another option is to group the member types by their scope (`public`, `protected
1232
1232
// Fields
1233
1233
" static-field" , // = ["public-static-field", "protected-static-field", "private-static-field"]
1234
1234
" instance-field" , // = ["public-instance-field", "protected-instance-field", "private-instance-field"]
1235
- " abstract-field" , // = ["public-abstract-field", "protected-abstract-field", "private-abstract-field" ]
1235
+ " abstract-field" , // = ["public-abstract-field", "protected-abstract-field"]
1236
1236
1237
1237
// Static initialization
1238
1238
// No scope for static initialization.
@@ -1243,17 +1243,17 @@ Another option is to group the member types by their scope (`public`, `protected
1243
1243
// Getters
1244
1244
" static-get" , // = ["public-static-get", "protected-static-get", "private-static-get"]
1245
1245
" instance-get" , // = ["public-instance-get", "protected-instance-get", "private-instance-get"]
1246
- " abstract-get" , // = ["public-abstract-get", "protected-abstract-get", "private-abstract-get" ]
1246
+ " abstract-get" , // = ["public-abstract-get", "protected-abstract-get"]
1247
1247
1248
1248
// Setters
1249
1249
" static-set" , // = ["public-static-set", "protected-static-set", "private-static-set"]
1250
1250
" instance-set" , // = ["public-instance-set", "protected-instance-set", "private-instance-set"]
1251
- " abstract-set" , // = ["public-abstract-set", "protected-abstract-set", "private-abstract-set" ]
1251
+ " abstract-set" , // = ["public-abstract-set", "protected-abstract-set"]
1252
1252
1253
1253
// Methods
1254
1254
" static-method" , // = ["public-static-method", "protected-static-method", "private-static-method"]
1255
1255
" instance-method" , // = ["public-instance-method", "protected-instance-method", "private-instance-method"]
1256
- " abstract-method" // = ["public-abstract-method", "protected-abstract-method", "private-abstract-method" ]
1256
+ " abstract-method" // = ["public-abstract-method", "protected-abstract-method"]
1257
1257
]
1258
1258
```
1259
1259
@@ -1268,7 +1268,7 @@ The third grouping option is to ignore both scope and accessibility.
1268
1268
1269
1269
// Fields
1270
1270
" field" , // = ["public-static-field", "protected-static-field", "private-static-field", "public-instance-field", "protected-instance-field", "private-instance-field",
1271
- // "public-abstract-field", "protected-abstract-field", private-abstract-field" ]
1271
+ // "public-abstract-field", "protected-abstract-field"]
1272
1272
1273
1273
// Static initialization
1274
1274
// No grouping for static initialization.
@@ -1278,15 +1278,15 @@ The third grouping option is to ignore both scope and accessibility.
1278
1278
1279
1279
// Getters
1280
1280
" get" , // = ["public-static-get", "protected-static-get", "private-static-get", "public-instance-get", "protected-instance-get", "private-instance-get",
1281
- // "public-abstract-get", "protected-abstract-get", "private-abstract-get" ]
1281
+ // "public-abstract-get", "protected-abstract-get"]
1282
1282
1283
1283
// Setters
1284
1284
" set" , // = ["public-static-set", "protected-static-set", "private-static-set", "public-instance-set", "protected-instance-set", "private-instance-set",
1285
- // "public-abstract-set", "protected-abstract-set", "private-abstract-set" ]
1285
+ // "public-abstract-set", "protected-abstract-set"]
1286
1286
1287
1287
// Methods
1288
1288
" method" // = ["public-static-method", "protected-static-method", "private-static-method", "public-instance-method", "protected-instance-method", "private-instance-method",
1289
- // "public-abstract-method", "protected-abstract-method", "private-abstract-method" ]
1289
+ // "public-abstract-method", "protected-abstract-method"]
1290
1290
]
1291
1291
```
1292
1292
0 commit comments