We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79d6b1d commit c024925Copy full SHA for c024925
src/site/resources/checkstyle/checkstyle.xml
@@ -61,5 +61,6 @@ limitations under the License.
61
<property name="separated" value="true"/>
62
</module>
63
<module name="MissingOverride"/>
64
+ <module name="ArrayTypeStyle"/>
65
66
src/test/java/org/apache/commons/lang3/SystemUtilsTest.java
@@ -170,7 +170,7 @@ public void test_IS_OS() {
170
assertFalse(SystemUtils.IS_OS_ANDROID);
171
assertFalse(SystemUtils.IS_OS_WINDOWS);
172
// @formatter:off
173
- final boolean macOsValues[] = {
+ final boolean[] macOsValues = {
174
SystemUtils.IS_OS_MAC_OSX_BIG_SUR,
175
SystemUtils.IS_OS_MAC_OSX_CATALINA,
176
SystemUtils.IS_OS_MAC_OSX_CHEETAH,
0 commit comments