diff options
author | Jonathan Nieder <jrn@google.com> | 2018-08-31 13:03:29 -0700 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2018-08-31 13:03:29 -0700 |
commit | 4e8feb96a3fdffdd64360ddf3632420a42470737 (patch) | |
tree | 0b41a5aa8ea816c5b4d534a22a90286758b10de6 | |
parent | eb9a0c1983d8d5f0b0e933988b6efc1c453e3068 (diff) | |
download | jgit-4e8feb96a3fdffdd64360ddf3632420a42470737.tar.gz jgit-4e8feb96a3fdffdd64360ddf3632420a42470737.zip |
FetchV2Request: Correct typo in parameter name
There is an extra 'd' in deependNotRefs. Noticed during code review.
Change-Id: I93d8d7951fe5c351b62e23bdf5bad0ebd631017d
Signed-off-by: Jonathan Nieder <jrn@google.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java index e633ca420f..92e21bce22 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java @@ -84,14 +84,14 @@ public final class FetchV2Request { private FetchV2Request(List<ObjectId> peerHas, TreeMap<String, ObjectId> wantedRefs, Set<ObjectId> wantsIds, Set<ObjectId> clientShallowCommits, int shallowSince, - List<String> deependNotRefs, int depth, long filterBlobLimit, + List<String> deepenNotRefs, int depth, long filterBlobLimit, boolean doneReceived, Set<String> options) { this.peerHas = peerHas; this.wantedRefs = wantedRefs; this.wantsIds = wantsIds; this.clientShallowCommits = clientShallowCommits; this.shallowSince = shallowSince; - this.deepenNotRefs = deependNotRefs; + this.deepenNotRefs = deepenNotRefs; this.depth = depth; this.filterBlobLimit = filterBlobLimit; this.doneReceived = doneReceived; |