Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ under the License.
<properties>
<javaVersion>8</javaVersion>
<mavenVersion>3.9.11</mavenVersion>
<pmdVersion>7.16.0</pmdVersion>
<pmdVersion>7.17.0</pmdVersion>
<slf4jVersion>1.7.36</slf4jVersion>
<resolverVersion>1.9.24</resolverVersion>
<doxiaVersion>2.0.0</doxiaVersion>
Expand Down Expand Up @@ -398,6 +398,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.9.1</version>
<configuration>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<debug>false</debug>
Expand Down
2 changes: 1 addition & 1 deletion src/it/MPMD-163/src/main/java/com/mycompany/app/Foo.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.ArrayList;
public class Foo
{
public Foo(final ArrayList<String> foo)
private Foo(final ArrayList<String> foo)
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class Foo
{
public Foo( final ArrayList<String> foo )
private Foo( final ArrayList<String> foo )
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ under the License.
<rule ref="category/java/errorprone.xml/UnconditionalIfStatement" />
<rule ref="category/java/errorprone.xml/UnnecessaryConversionTemporary" />
<rule ref="category/java/errorprone.xml/UnusedNullCheckInEquals" />
<rule ref="category/java/errorprone.xml/UselessOperationOnImmutable" />
<rule ref="category/java/errorprone.xml/UselessPureMethodCall" />

<rule ref="category/java/multithreading.xml/AvoidThreadGroup" />
<rule ref="category/java/multithreading.xml/DontCallThreadRun" />
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/rulesets/maven.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ under the License.
<rule ref="category/java/errorprone.xml/UnconditionalIfStatement" />
<rule ref="category/java/errorprone.xml/UnnecessaryConversionTemporary" />
<rule ref="category/java/errorprone.xml/UnusedNullCheckInEquals" />
<rule ref="category/java/errorprone.xml/UselessOperationOnImmutable" />
<rule ref="category/java/errorprone.xml/UselessPureMethodCall" />

<rule ref="category/java/multithreading.xml/AvoidThreadGroup" />
<rule ref="category/java/multithreading.xml/DontCallThreadRun" />
Expand Down
2 changes: 1 addition & 1 deletion src/site/apt/examples/usingRuleSets.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ The default ruleset
<rule ref="category/java/errorprone.xml/UnconditionalIfStatement" />
<rule ref="category/java/errorprone.xml/UnnecessaryConversionTemporary" />
<rule ref="category/java/errorprone.xml/UnusedNullCheckInEquals" />
<rule ref="category/java/errorprone.xml/UselessOperationOnImmutable" />
<rule ref="category/java/errorprone.xml/UselessPureMethodCall" />

<rule ref="category/java/multithreading.xml/AvoidThreadGroup" />
<rule ref="category/java/multithreading.xml/DontCallThreadRun" />
Expand Down