aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/CommandLineMergeTool.java
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2023-09-22 01:17:37 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2023-09-25 22:06:12 +0200
commite23796cbdb8540a494bed0ea9bafc1980918dd90 (patch)
tree344aafcc8a83a64be1df10046ff24da099916b8d /org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/CommandLineMergeTool.java
parent254ffbfb0da53bf0a27b163b873cc2cea1d32261 (diff)
downloadjgit-e23796cbdb8540a494bed0ea9bafc1980918dd90.tar.gz
jgit-e23796cbdb8540a494bed0ea9bafc1980918dd90.zip
[errorprone] CommandLineMergeTool: Remove unused constuctor
See https://errorprone.info/bugpattern/UnusedMethod Change-Id: I711279d7b81c61111c7c129b3d119affc515fe70
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/CommandLineMergeTool.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/CommandLineMergeTool.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/CommandLineMergeTool.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/CommandLineMergeTool.java
index 3a22124328..668f46dd72 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/CommandLineMergeTool.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/CommandLineMergeTool.java
@@ -273,11 +273,6 @@ public enum CommandLineMergeTool {
this.exitCodeTrustable = exitCodeTrustable;
}
- CommandLineMergeTool(CommandLineMergeTool from) {
- this(from.getPath(), from.getParameters(true),
- from.getParameters(false), from.isExitCodeTrustable());
- }
-
CommandLineMergeTool(String path, CommandLineMergeTool from) {
this(path, from.getParameters(true), from.getParameters(false),
from.isExitCodeTrustable());