Skip to content

Commit 544def6

Browse files
committed
Suppress PMD warnings
1 parent 0fe2bd2 commit 544def6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

plugin/src/main/java/io/jenkins/plugins/forensics/git/reference/BuildCommits.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class BuildCommits implements Serializable {
2323

2424
private final String previousBuildCommit;
2525

26-
@SuppressWarnings("LooseCoupling")
26+
@SuppressWarnings("PMD.LooseCoupling")
2727
private final ArrayList<String> commits = new ArrayList<>();
2828

2929
private ObjectId head = ObjectId.zeroId();

plugin/src/main/java/io/jenkins/plugins/forensics/git/reference/GitCommitsRecord.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ public static Optional<GitCommitsRecord> findRecordForScm(final Run<?, ?> build,
5858
private final RecordingType recordingType;
5959
private final String latestCommitLink;
6060
private final String targetParentCommit;
61-
@SuppressWarnings("LooseCoupling")
61+
@SuppressWarnings("PMD.LooseCoupling")
6262
private final ArrayList<String> commits;
63-
@SuppressWarnings("LooseCoupling")
63+
@SuppressWarnings("PMD.LooseCoupling")
6464
private final ArrayList<String> errorMessages;
65-
@SuppressWarnings("LooseCoupling")
65+
@SuppressWarnings("PMD.LooseCoupling")
6666
private final ArrayList<String> infoMessages;
6767

6868
/** Determines if this record is the starting point or an incremental record that is based on the previous record. */

0 commit comments

Comments
 (0)