Browse Source

cleanup: Remove unused declarations

Change-Id: I3b54cb9f73cb433c71a441a11ddc74cfecdaa1dc
tags/v2.0.0.201206130900-r
Robin Rosenberg 12 years ago
parent
commit
4321f9353f

+ 0
- 1
org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitInitTask.java View File

import org.apache.tools.ant.Task; import org.apache.tools.ant.Task;
import org.eclipse.jgit.api.Git; import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.InitCommand; import org.eclipse.jgit.api.InitCommand;
import org.eclipse.jgit.api.errors.JGitInternalException;


/** /**
* Create an empty git repository. * Create an empty git repository.

+ 0
- 1
org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java View File

// Ignore (not relevant to test failures) // Ignore (not relevant to test failures)
} }


@SuppressWarnings("unused")
public void ignore(Throwable arg0) { public void ignore(Throwable arg0) {
// Ignore (not relevant to test failures) // Ignore (not relevant to test failures)
} }

+ 0
- 1
org.eclipse.jgit.storage.dht/src/org/eclipse/jgit/storage/dht/ChunkIndex.java View File

return fmt; return fmt;
} }


@SuppressWarnings("unchecked")
private static void sortObjectList(List<? extends PackedObjectInfo> list) { private static void sortObjectList(List<? extends PackedObjectInfo> list) {
Collections.sort(list); Collections.sort(list);
} }

+ 0
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsInserter.java View File

packOut.write(buf, 0, 12); packOut.write(buf, 0, 12);
} }


@SuppressWarnings("unchecked")
private void sortObjectsById() { private void sortObjectsById() {
Collections.sort(objectList); Collections.sort(objectList);
} }

Loading…
Cancel
Save