From 4e8feb96a3fdffdd64360ddf3632420a42470737 Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Fri, 31 Aug 2018 13:03:29 -0700 Subject: [PATCH] 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 --- .../src/org/eclipse/jgit/transport/FetchV2Request.java | 4 ++-- 1 file 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 e633ca420..92e21bce2 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 peerHas, TreeMap wantedRefs, Set wantsIds, Set clientShallowCommits, int shallowSince, - List deependNotRefs, int depth, long filterBlobLimit, + List deepenNotRefs, int depth, long filterBlobLimit, boolean doneReceived, Set 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;