diff --git a/src/main/java/com/launchableinc/ingest/commits/CommitGraphCollector.java b/src/main/java/com/launchableinc/ingest/commits/CommitGraphCollector.java index e94b6452c..b07a1386c 100644 --- a/src/main/java/com/launchableinc/ingest/commits/CommitGraphCollector.java +++ b/src/main/java/com/launchableinc/ingest/commits/CommitGraphCollector.java @@ -342,6 +342,9 @@ private ImmutableList getAdvertisedRefs(HttpResponse response) throws * * @param commitSender Commits are written to streams provided by this {@link Supplier}, in the given * chunk size. + * @param treeReceiver Receives file names (aka 'tree' in Git speak) that the CLI thinks the server needs, + * and respond with those that the server actually needs. + * @param fileSender Receives the actual contents of the files that the server needs. */ public void transfer( Collection advertised, IOConsumer commitSender, TreeReceiver treeReceiver, IOConsumer fileSender, int chunkSize)