Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3051a2b

Browse files
committedFeb 18, 2021
Polish
1 parent 0d4ef2c commit 3051a2b

File tree

423 files changed

+41767
-39199
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

423 files changed

+41767
-39199
lines changed
 

‎.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ end_of_line = lf
99
insert_final_newline = true
1010

1111
# 4 space - Tab indentation
12-
[*.{java,xml,js,html}]
12+
[*.{java, xml, js, html}]
1313
indent_style = tab
1414
indent_size = 4

‎checkstyle.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
limitations under the License.
1818
-->
1919
<!DOCTYPE module PUBLIC
20-
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
21-
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
20+
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
21+
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
2222

2323
<!-- This is a checkstyle configuration file. For descriptions of what the
2424
following rules do, please see the checkstyle configuration page at http://checkstyle.sourceforge.net/config.html -->
@@ -100,7 +100,7 @@
100100
<property name="applyToPrivate" value="false"/>
101101
<property name="format" value="^([A-Z][A-Z0-9]*(_[A-Z0-9]+)*|FLAG_.*)$"/>
102102
<message key="name.invalidPattern"
103-
value="Variable ''{0}'' should be in ALL_CAPS (if it is a constant) or be private (otherwise)."/>
103+
value="Variable ''{0}'' should be in ALL_CAPS (if it is a constant) or be private (otherwise)."/>
104104
<property name="severity" value="warning"/>
105105
</module>
106106

@@ -157,16 +157,16 @@
157157
<module name="LineLength">
158158
<!-- Checks if a line is too long. -->
159159
<property name="max"
160-
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.max}"
161-
default="250"/>
160+
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.max}"
161+
default="250"/>
162162
<property name="severity" value="warning"/>
163163

164164
<!-- The default ignore pattern exempts the following elements: - import
165165
statements - long URLs inside comments -->
166166

167167
<property name="ignorePattern"
168-
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.ignorePattern}"
169-
default="^(package .*;\s*)|(import .*;\s*)|( *\* *https?://.*)$"/>
168+
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.ignorePattern}"
169+
default="^(package .*;\s*)|(import .*;\s*)|( *\* *https?://.*)$"/>
170170
</module>
171171

172172
<module name="LeftCurly">
@@ -186,7 +186,7 @@
186186
<module name="NeedBraces">
187187
<property name="severity" value="warning"/>
188188
<property name="tokens"
189-
value="LITERAL_IF, LITERAL_ELSE, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO"/>
189+
value="LITERAL_IF, LITERAL_ELSE, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO"/>
190190
</module>
191191

192192
<module name="UpperEll">
@@ -200,7 +200,7 @@
200200
on the last non-blank line preceding the fallen-into case contains 'fall
201201
through' (or some other variants which we don't publicized to promote consistency). -->
202202
<property name="reliefPattern"
203-
value="fall through|Fall through|fallthru|Fallthru|falls through|Falls through|fallthrough|Fallthrough|No break|NO break|no break|continue on"/>
203+
value="fall through|Fall through|fallthru|Fallthru|falls through|Falls through|fallthrough|Fallthrough|No break|NO break|no break|continue on"/>
204204
<property name="severity" value="error"/>
205205
</module>
206206

@@ -275,7 +275,7 @@
275275
<!-- Checks that various tokens are surrounded by whitespace. This includes
276276
most binary operators and keywords followed by regular or curly braces. -->
277277
<property name="tokens"
278-
value="ASSIGN, BAND, BAND_ASSIGN, BOR,
278+
value="ASSIGN, BAND, BAND_ASSIGN, BOR,
279279
BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN,
280280
EQUAL, GE, GT, LAND, LE, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE,
281281
LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN,
@@ -295,7 +295,7 @@
295295
<!-- Checks that there is no whitespace after various unary operators.
296296
Linebreaks are allowed. -->
297297
<property name="tokens"
298-
value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS, UNARY_PLUS"/>
298+
value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS, UNARY_PLUS"/>
299299
<property name="allowLineBreaks" value="true"/>
300300
<property name="severity" value="warning"/>
301301
</module>

0 commit comments

Comments
 (0)