Browse Source

Merge "FetchV2Request: make getWantedRefs public"

stable-5.4
Jonathan Nieder 6 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
94c8fd55e3
  1. 4
      org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java

4
org.eclipse.jgit/src/org/eclipse/jgit/transport/FetchV2Request.java

@ -98,9 +98,11 @@ public final class FetchV2Request extends FetchRequest {
/** /**
* @return list of references received in "want-ref" lines * @return list of references received in "want-ref" lines
*
* @since 5.3
*/ */
@NonNull @NonNull
List<String> getWantedRefs() { public List<String> getWantedRefs() {
return wantedRefs; return wantedRefs;
} }

Loading…
Cancel
Save