Skip to content

Commit c7ef5be

Browse files
Balazs Nemethrnveach
Balazs Nemeth
authored andcommittedNov 7, 2017
doc: Removed maxLineLength property from javadoc, the property itself had been removed earlier
1 parent 10835c3 commit c7ef5be

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed
 

‎src/main/java/com/puppycrawl/tools/checkstyle/checks/blocks/LeftCurlyCheck.java

+4-7
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@
4444
*
4545
* <p>
4646
* The policy to verify is specified using the {@link LeftCurlyOption} class and
47-
* defaults to {@link LeftCurlyOption#EOL}. Policies {@link LeftCurlyOption#EOL}
48-
* and {@link LeftCurlyOption#NLOW} take into account property maxLineLength.
49-
* The default value for maxLineLength is 80.
47+
* defaults to {@link LeftCurlyOption#EOL}.
5048
* </p>
5149
* <p>
5250
* An example of how to configure the check is:
@@ -56,13 +54,12 @@
5654
* </pre>
5755
* <p>
5856
* An example of how to configure the check with policy
59-
* {@link LeftCurlyOption#NLOW} and maxLineLength 120 is:
57+
* {@link LeftCurlyOption#NLOW} is:
6058
* </p>
6159
* <pre>
6260
* &lt;module name="LeftCurly"&gt;
63-
* &lt;property name="option"
64-
* value="nlow"/&gt; &lt;property name="maxLineLength" value="120"/&gt; &lt;
65-
* /module&gt;
61+
* &lt;property name="option" value="nlow"/&gt;
62+
* &lt;/module&gt;
6663
* </pre>
6764
* <p>
6865
* An example of how to configure the check to validate enum definitions:

0 commit comments

Comments
 (0)
Please sign in to comment.