Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion fabric-chaincode-shim/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

pmd {
toolVersion = '7.7.0'
toolVersion = '7.10.0'
ruleSetFiles = files('../pmd-ruleset.xml')
ruleSets = [] // explicitly set to empty to avoid using the default configuration
ignoreFailures = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.hyperledger.fabric.shim.ChaincodeStub;

public final class ContractInvocationRequest implements InvocationRequest {
@SuppressWarnings("PMD.ProperLogger") // PMD 7.7.0 gives a false positive here
@SuppressWarnings("PMD.ProperLogger") // PMD 7.10.0 gives a false positive here
private static final Log LOGGER = LogFactory.getLog(ContractInvocationRequest.class);

private static final Pattern NS_REGEX = Pattern.compile(":");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/** Implements {@link StateBasedEndorsement}. */
public final class StateBasedEndorsementImpl implements StateBasedEndorsement {
@SuppressWarnings("PMD.ProperLogger") // PMD 7.7.0 reports a false positive
@SuppressWarnings("PMD.ProperLogger") // PMD 7.10.0 reports a false positive
private static final Log LOGGER = LogFactory.getLog(StateBasedEndorsementImpl.class);

private final Map<String, MSPRoleType> orgs = new HashMap<>();
Expand Down
Loading