checkstyle.xml (zxing-zxing-3.4.1) | : | checkstyle.xml (zxing-zxing-3.5.0) | ||
---|---|---|---|---|
skipping to change at line 104 | skipping to change at line 104 | |||
<!-- Checks for imports --> | <!-- Checks for imports --> | |||
<!-- See http://checkstyle.sf.net/config_import.html --> | <!-- See http://checkstyle.sf.net/config_import.html --> | |||
<module name="AvoidStarImport"/> | <module name="AvoidStarImport"/> | |||
<module name="AvoidStaticImport"/> | <module name="AvoidStaticImport"/> | |||
<module name="IllegalImport"/> <!-- defaults to sun.* packages --> | <module name="IllegalImport"/> <!-- defaults to sun.* packages --> | |||
<module name="RedundantImport"/> | <module name="RedundantImport"/> | |||
<module name="UnusedImports"/> | <module name="UnusedImports"/> | |||
<!-- Checks for Size Violations. --> | <!-- Checks for Size Violations. --> | |||
<!-- See http://checkstyle.sf.net/config_sizes.html --> | <!-- See http://checkstyle.sf.net/config_sizes.html --> | |||
<!-- | ||||
<module name="LineLength"> | ||||
<property name="max" value="120"/> | ||||
</module> | ||||
--> | ||||
<!-- <module name="MethodLength"/> --> | <!-- <module name="MethodLength"/> --> | |||
<!-- <module name="ParameterNumber"/> --> | <!-- <module name="ParameterNumber"/> --> | |||
<!-- Checks for whitespace --> | <!-- Checks for whitespace --> | |||
<!-- See http://checkstyle.sf.net/config_whitespace.html --> | <!-- See http://checkstyle.sf.net/config_whitespace.html --> | |||
<module name="EmptyForIteratorPad"/> | <module name="EmptyForIteratorPad"/> | |||
<module name="MethodParamPad"/> | <module name="MethodParamPad"/> | |||
<!-- <module name="OperatorWrap"/> --> | <!-- <module name="OperatorWrap"/> --> | |||
<module name="ParenPad"/> | <module name="ParenPad"/> | |||
<module name="TypecastParenPad"/> | <module name="TypecastParenPad"/> | |||
<module name="WhitespaceAfter"> | <module name="WhitespaceAfter"> | |||
<property name="tokens" value="TYPECAST, SEMI"/> | <property name="tokens" value="TYPECAST, SEMI"/> | |||
</module> | </module> | |||
<module name="WhitespaceAround"> | <module name="WhitespaceAround"> | |||
<property name="allowEmptyConstructors" value="true"/> | <property name="allowEmptyConstructors" value="true"/> | |||
</module> | </module> | |||
<module name="UnnecessaryParentheses"/> | <!-- <module name="UnnecessaryParentheses"/> --> | |||
<!-- Modifier Checks --> | <!-- Modifier Checks --> | |||
<!-- See http://checkstyle.sf.net/config_modifiers.html --> | <!-- See http://checkstyle.sf.net/config_modifiers.html --> | |||
<module name="ModifierOrder"/> | <module name="ModifierOrder"/> | |||
<module name="RedundantModifier"/> | <module name="RedundantModifier"/> | |||
<!-- Checks for blocks. You know, those {}'s --> | <!-- Checks for blocks. You know, those {}'s --> | |||
<!-- See http://checkstyle.sf.net/config_blocks.html --> | <!-- See http://checkstyle.sf.net/config_blocks.html --> | |||
<module name="AvoidNestedBlocks"/> | <module name="AvoidNestedBlocks"/> | |||
<module name="EmptyBlock"> | <module name="EmptyBlock"> | |||
skipping to change at line 180 | skipping to change at line 175 | |||
<module name="SuperFinalize"/> | <module name="SuperFinalize"/> | |||
<!-- <module name="VisibilityModifier"/> --> | <!-- <module name="VisibilityModifier"/> --> | |||
<!-- Miscellaneous other checks. --> | <!-- Miscellaneous other checks. --> | |||
<!-- See http://checkstyle.sf.net/config_misc.html --> | <!-- See http://checkstyle.sf.net/config_misc.html --> | |||
<module name="ArrayTypeStyle"/> | <module name="ArrayTypeStyle"/> | |||
<!--<module name="FinalParameters"/>--> | <!--<module name="FinalParameters"/>--> | |||
<!-- <module name="TodoComment"/> --> | <!-- <module name="TodoComment"/> --> | |||
<module name="UpperEll"/> | <module name="UpperEll"/> | |||
<module name="Indentation"> | ||||
<property name="basicOffset" value="2" /> | ||||
<property name="braceAdjustment" value="0" /> | ||||
<property name="caseIndent" value="2" /> | ||||
<property name="arrayInitIndent" value="2"/> | ||||
</module> | ||||
</module> | </module> | |||
<!-- Support @SuppressWarnings (added in Checkstyle 5.7) --> | <!-- Support @SuppressWarnings (added in Checkstyle 5.7) --> | |||
<!-- see http://checkstyle.sourceforge.net/config.html#SuppressWarningsFilter --> | <!-- see http://checkstyle.sourceforge.net/config.html#SuppressWarningsFilter --> | |||
<module name="SuppressWarningsFilter"/> | <module name="SuppressWarningsFilter"/> | |||
<!-- Checks properties file for a duplicated properties. --> | <!-- Checks properties file for a duplicated properties. --> | |||
<!-- See http://checkstyle.sourceforge.net/config_misc.html#UniqueProperties - -> | <!-- See http://checkstyle.sourceforge.net/config_misc.html#UniqueProperties - -> | |||
<module name="UniqueProperties"/> | <module name="UniqueProperties"/> | |||
<module name="LineLength"> | ||||
<property name="max" value="120"/> | ||||
</module> | ||||
</module> | </module> | |||
End of changes. 4 change blocks. | ||||
6 lines changed or deleted | 12 lines changed or added |