Changing checkstyle configuration to the new style

This commit is contained in:
Clebert Suconic 2015-08-04 12:01:29 -04:00
parent feac2ad415
commit 7fb5d921e3
1 changed files with 2 additions and 2 deletions

View File

@ -67,9 +67,9 @@ under the License.
<module name="CovariantEquals"/>
<!-- Checks the style of array type definitions. -->
<module name="ArrayTypeStyle"/>
<!-- Make sure left curly braces are on a new line. Note, this is not the recommendation from Sun. It is a legacy preference. -->
<!-- Make sure left curly braces are on the same line. -->
<module name="LeftCurly">
<property name="option" value="nl"/>
<property name="option" value="eol"/>
</module>
<!-- Make sure right curly braces are on a new line by itself. Note, this is not the recommendation from Sun. It is a legacy preference. -->
<module name="RightCurly">