Skip to content

Commit 4d3f83b

Browse files
PVR0590135 Update
Signed-off-by: Muthu <[email protected]>
1 parent 8fb3168 commit 4d3f83b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

fabric-chaincode-shim/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
pmd {
15-
toolVersion = '7.7.0'
15+
toolVersion = '7.10.0'
1616
ruleSetFiles = files('../pmd-ruleset.xml')
1717
ruleSets = [] // explicitly set to empty to avoid using the default configuration
1818
ignoreFailures = false

fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/contract/execution/impl/ContractInvocationRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.hyperledger.fabric.shim.ChaincodeStub;
1616

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

2121
private static final Pattern NS_REGEX = Pattern.compile(":");

fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/shim/ext/sbe/impl/StateBasedEndorsementImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

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

2929
private final Map<String, MSPRoleType> orgs = new HashMap<>();

0 commit comments

Comments
 (0)