Remove unused code and link to deprecated code

Eclipse reports these as errors, so remove them.

Change-Id: Ic53d8003f9faef38fe776af5a73794e7bb1dfc49
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
This commit is contained in:
Jonathan Tan 2018-04-24 13:05:16 -07:00 committed by Matthias Sohn
parent 32a8162bc3
commit ce7ac03c2f
2 changed files with 2 additions and 22 deletions

View File

@ -334,22 +334,6 @@ public UploadPack create(Object req, Repository db)
}
}
private static ByteArrayInputStream send(String... lines) throws Exception {
ByteArrayOutputStream os = new ByteArrayOutputStream();
PacketLineOut pckOut = new PacketLineOut(os);
for (String line : lines) {
if (line == PacketLineIn.END) {
pckOut.end();
} else if (line == PacketLineIn.DELIM) {
pckOut.writeDelim();
} else {
pckOut.writeString(line);
}
}
byte[] a = os.toByteArray();
return new ByteArrayInputStream(a);
}
/*
* Invokes UploadPack with protocol v2 and sends it the given lines.
* Returns UploadPack's output stream, not including the capability
@ -534,9 +518,6 @@ public void testV2LsRefsRefPrefixNoSlash() throws Exception {
* into the client repository.
*/
private void parsePack(ByteArrayInputStream recvStream) throws Exception {
SideBandInputStream sb = new SideBandInputStream(
recvStream, NullProgressMonitor.INSTANCE,
new StringWriter(), NullOutputStream.INSTANCE);
parsePack(recvStream, NullProgressMonitor.INSTANCE);
}
@ -826,7 +807,7 @@ public void testV2FetchNoProgress() throws Exception {
private static class RejectAllRefFilter implements RefFilter {
@Override
public Map<String, Ref> filter(Map<String, Ref> refs) {
return new HashMap<String, Ref>();
return new HashMap<>();
}
};
}

View File

@ -251,8 +251,7 @@ public NameRevCommand add(Iterable<ObjectId> ids)
* prefix added by {@link #addPrefix(String)}.
*
* @param prefix
* prefix to add; see
* {@link org.eclipse.jgit.lib.RefDatabase#getRefs(String)}
* prefix to add; the prefix must end with a slash
* @return {@code this}
*/
public NameRevCommand addPrefix(String prefix) {