Skip to content

Commit 1b561b7

Browse files
committed
v4
1 parent 04f304c commit 1b561b7

File tree

56 files changed

+35
-60
lines changed

Some content is hidden

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

56 files changed

+35
-60
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Check out all text files in UNIX format.
22
* text eol=lf
33

4-
# Explicitly declare text files we want to always be normalized and converted
4+
# Explicitly declare text files we want to always be normalized and converted
55
# to native line endings on checkout.
66
*.txt text
77
*.java text

.github/workflows/mvn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ jobs:
2626
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
2727
restore-keys: |
2828
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
29-
- run: mvn -B install -Pqulice
29+
- run: mvn -B install -Pqulice

.github/workflows/up.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
up:
1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
16+
- uses: actions/checkout@v4
1717
- run: |-
1818
git fetch --tags --force && \
1919
latest=$(git tag --sort=creatordate | tail -1) && \
@@ -25,4 +25,4 @@ jobs:
2525
delete-branch: true
2626
title: 'New version in README'
2727
assignees: yegor256
28-
base: master
28+
base: master

README.md

Lines changed: 1 addition & 1 deletion

qulice-checkstyle/src/main/java/com/qulice/checkstyle/JavadocTagsCheck.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,4 +228,3 @@ private List<Integer> findTagLineNum(
228228
return found;
229229
}
230230
}
231-

qulice-checkstyle/src/site/apt/index.apt.vm

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,3 @@ Checkstyle Module
4444
{{{http://checkstyle.sourceforge.net/}Checkstyle}} static analysis tool
4545
and pre-configures it. Full configuration we're using is available in
4646
{{{http://trac.fazend.com/qulice/browser/qulice/tags/qulice-${project.version}/qulice/qulice-checkstyle/src/main/resources/com/qulice/checkstyle/checks.xml}<<<checks.xml>>>}}.
47-

qulice-checkstyle/src/test/resources/com/qulice/checkstyle/AnnotationConstant.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,3 @@ public String other() {
8080
return String.valueOf(this.dat);
8181
}
8282
}
83-

qulice-checkstyle/src/test/resources/com/qulice/checkstyle/ChecksTest/CommentCheck/Invalid.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ public void main() {
1919
*/
2020
private static String OTHER_TEXT = "some text";
2121
}
22-

qulice-checkstyle/src/test/resources/com/qulice/checkstyle/ChecksTest/CommentCheck/violations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
9:The first sentence in a multiline comment should start with a capital letter, even if the comment begins with two asterisks.
33
9:The first sentence in a single-line comment should start with a capital letter.
44
15:The first sentence in a multiline comment should start with a capital letter.
5-
19:The first sentence in a multiline comment should start with a capital letter, even if the comment begins with two asterisks.
5+
19:The first sentence in a multiline comment should start with a capital letter, even if the comment begins with two asterisks.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
6:Private constant "INSTANCE" is not used
2-
7:Private constant "OTHER_INSTANCE" is not used
2+
7:Private constant "OTHER_INSTANCE" is not used

0 commit comments

Comments
 (0)