From 5cd8d96fedd731afe49435f0769ccfe20c8f4ded Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 28 Nov 2025 06:52:10 +0900 Subject: [PATCH] [chore] minor doc update --- .../com/launchableinc/ingest/commits/CommitGraphCollector.java | 3 +++ 1 file changed, 3 insertions(+) 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)