Skip to content

Commit c4d5b92

Browse files
committed
#1382: Update qulice-maven-plugin version to 0.24.2.
1 parent c79aa4d commit c4d5b92

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
<plugin>
228228
<groupId>com.qulice</groupId>
229229
<artifactId>qulice-maven-plugin</artifactId>
230-
<version>0.24.0</version>
230+
<version>0.24.2</version>
231231
</plugin>
232232
</plugins>
233233
</build>

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ private static boolean isPrivateCtorUsedInOtherCtors(
8787
.anyMatch(
8888
otherCtor -> otherCtor != privatector
8989
&&
90-
isCallingConstructor(otherCtor, privatector));
90+
isCallingConstructor(otherCtor, privatector)
91+
);
9192
}
9293

9394
/**

qulice-maven-plugin/pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -93,21 +93,12 @@
9393
<groupId>com.ibm.icu</groupId>
9494
<artifactId>icu4j</artifactId>
9595
</exclusion>
96-
<exclusion>
97-
<groupId>xerces</groupId>
98-
<artifactId>xmlParserAPIs</artifactId>
99-
</exclusion>
10096
<exclusion>
10197
<groupId>net.java.dev.javacc</groupId>
10298
<artifactId>javacc</artifactId>
10399
</exclusion>
104100
</exclusions>
105101
</dependency>
106-
<dependency>
107-
<groupId>xerces</groupId>
108-
<artifactId>xmlParserAPIs</artifactId>
109-
<version>2.6.2</version>
110-
</dependency>
111102
<dependency>
112103
<groupId>commons-io</groupId>
113104
<artifactId>commons-io</artifactId>

0 commit comments

Comments
 (0)