Remove unused constructor

This commit is contained in:
Michael Walker 2018-02-07 13:01:41 +00:00
parent 647cf24bb6
commit 77e3bc0d3b

View file

@ -27,10 +27,6 @@ public class MissingRepositoryException extends SnapshotAPIException {
descriptionLines = new ArrayList<String>();
}
public MissingRepositoryException(String message) {
this.descriptionLines = Arrays.asList(message);
}
public MissingRepositoryException(List<String> descriptionLines) {
this.descriptionLines = descriptionLines;
}