Browse Source

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>
tags/v5.1.0.201809051400-rc1
Jonathan Nieder 5 years ago
parent
commit
4e8feb96a3

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java View File

@@ -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;

Loading…
Cancel
Save