commit | 81c16dcdfb9f96492bcc281be365d80bcb04e4f8 | [log] [tgz] |
---|---|---|
author | Edwin Kempin <ekempin@google.com> | Thu Apr 04 14:38:55 2019 +0200 |
committer | Edwin Kempin <ekempin@google.com> | Thu Apr 04 14:38:55 2019 +0200 |
tree | 5ac3fd394644912101a158c60af39b90fa4831b9 | |
parent | 4831078148578d8f9db5eeb72b6581c8c9d61c28 [diff] |
NoSuchCheckerException: Remove unused constructors Signed-off-by: Edwin Kempin <ekempin@google.com> Change-Id: I4f278748abf9565d3cb1b617a4ca686855f71bf0
diff --git a/java/com/google/gerrit/plugins/checks/NoSuchCheckerException.java b/java/com/google/gerrit/plugins/checks/NoSuchCheckerException.java index dcdadcc..df5d8cd 100644 --- a/java/com/google/gerrit/plugins/checks/NoSuchCheckerException.java +++ b/java/com/google/gerrit/plugins/checks/NoSuchCheckerException.java
@@ -21,14 +21,6 @@ public static final String MESSAGE = "Checker Not Found: "; public NoSuchCheckerException(CheckerUuid uuid) { - this(uuid.get()); - } - - public NoSuchCheckerException(String uuid) { - this(uuid, null); - } - - public NoSuchCheckerException(String uuid, Throwable why) { - super(MESSAGE + uuid, why); + super(MESSAGE + uuid.get()); } }