Skip to content

Commit c75a5f1

Browse files
author
Polina Volkhontseva
committedApr 12, 2022
Fixed PMD violation
1 parent a9f0276 commit c75a5f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎qulice-pmd/src/main/java/com/qulice/pmd/PmdValidator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public Collection<Violation> validate(final Collection<File> files) {
6666
final Collection<DataSource> sources = new LinkedList<>();
6767
for (final File file : files) {
6868
final String name = file.getPath().substring(
69-
this.env.basedir().toString().length()
69+
this.env.basedir().toString().length()
7070
);
7171
if (!this.env.exclude("pmd", name)) {
7272
sources.add(new FileDataSource(file));

0 commit comments

Comments
 (0)
Please sign in to comment.