[errorprone] CommandLineMergeTool: Remove unused constuctor

See https://errorprone.info/bugpattern/UnusedMethod

Change-Id: I711279d7b81c61111c7c129b3d119affc515fe70
This commit is contained in:
Matthias Sohn 2023-09-22 01:17:37 +02:00
parent 254ffbfb0d
commit e23796cbdb
1 changed files with 0 additions and 5 deletions

View File

@ -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());