Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- .../src/org/spearce/jgit/lib/PackWriter.java | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/org.spearce.jgit/src/org/spearce/jgit/lib/PackWriter.java b/org.spearce.jgit/src/org/spearce/jgit/lib/PackWriter.java index 32bf738..32394f2 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/lib/PackWriter.java +++ b/org.spearce.jgit/src/org/spearce/jgit/lib/PackWriter.java @@ -436,8 +436,9 @@ public void preparePack(final Iterator<RevObject> objectsSource) * @throws IOException * when some I/O problem occur during reading objects. */ - public void preparePack(final Collection<ObjectId> interestingObjects, - final Collection<ObjectId> uninterestingObjects, + public void preparePack( + final Collection<? extends ObjectId> interestingObjects, + final Collection<? extends ObjectId> uninterestingObjects, final boolean thin, final boolean ignoreMissingUninteresting) throws IOException { ObjectWalk walker = setUpWalker(interestingObjects, @@ -727,8 +728,8 @@ private void writeChecksum() throws IOException { } private ObjectWalk setUpWalker( - final Collection<ObjectId> interestingObjects, - final Collection<ObjectId> uninterestingObjects, + final Collection<? extends ObjectId> interestingObjects, + final Collection<? extends ObjectId> uninterestingObjects, final boolean thin, final boolean ignoreMissingUninteresting) throws MissingObjectException, IOException, IncorrectObjectTypeException { -- 1.6.1.rc4.301.g5497a -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html