File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,24 +27,24 @@ Checks that the order of modifiers conforms to the standards.
27
27
28
28
### Valid
29
29
30
- ```
30
+ ``` java
31
31
public static inline var COUNT : Int = 1 ;
32
32
```
33
33
34
- ```
34
+ ``` java
35
35
override public function close() {}
36
36
```
37
37
38
38
### Invalid
39
39
40
- ```
40
+ ``` java
41
41
inline public static var COUNT : Int = 1 ;\
42
42
```
43
43
44
- ` Invalid access modifier order: COUNT (modifier: PUBLIC_PRIVATE) `
44
+ {{site.data.alerts.error}} Invalid access modifier order: COUNT (modifier: PUBLIC_PRIVATE) {{site.data.alerts.end}}
45
45
46
- ```
46
+ ``` java
47
47
public override function close() {}
48
48
```
49
49
50
- ` Invalid access modifier order: close (modifier: OVERRIDE) `
50
+ {{site.data.alerts.error}} Invalid access modifier order: close (modifier: OVERRIDE) {{site.data.alerts.end}}
You can’t perform that action at this time.
0 commit comments