cleanup: Remove unused declarations

Change-Id: I3b54cb9f73cb433c71a441a11ddc74cfecdaa1dc
This commit is contained in:
Robin Rosenberg 2012-06-06 01:43:44 +02:00
parent 20c33e6b0c
commit 4321f9353f
4 changed files with 0 additions and 4 deletions

View File

@ -48,7 +48,6 @@
import org.apache.tools.ant.Task;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.InitCommand;
import org.eclipse.jgit.api.errors.JGitInternalException;
/**
* Create an empty git repository.

View File

@ -184,7 +184,6 @@ public void debug(Throwable thrown) {
// Ignore (not relevant to test failures)
}
@SuppressWarnings("unused")
public void ignore(Throwable arg0) {
// Ignore (not relevant to test failures)
}

View File

@ -204,7 +204,6 @@ private static int selectOffsetFormat(List<? extends PackedObjectInfo> list) {
return fmt;
}
@SuppressWarnings("unchecked")
private static void sortObjectList(List<? extends PackedObjectInfo> list) {
Collections.sort(list);
}

View File

@ -231,7 +231,6 @@ private void beginPack() throws IOException {
packOut.write(buf, 0, 12);
}
@SuppressWarnings("unchecked")
private void sortObjectsById() {
Collections.sort(objectList);
}