]> source.dussan.org Git - jgit.git/commitdiff
FetchV2Request: Correct typo in parameter name 77/128477/1
authorJonathan Nieder <jrn@google.com>
Fri, 31 Aug 2018 20:03:29 +0000 (13:03 -0700)
committerJonathan Nieder <jrn@google.com>
Fri, 31 Aug 2018 20:03:29 +0000 (13:03 -0700)
There is an extra 'd' in deependNotRefs.  Noticed during code review.

Change-Id: I93d8d7951fe5c351b62e23bdf5bad0ebd631017d
Signed-off-by: Jonathan Nieder <jrn@google.com>
org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java

index e633ca420f3a12df02a80678d59f3f6bd0474f75..92e21bce22f7829d5f8fed2bd34e0db4669d9331 100644 (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;