Merge "FetchV2Request: make getWantedRefs public"

This commit is contained in:
Jonathan Nieder 2019-03-07 17:28:05 -05:00 committed by Gerrit Code Review @ Eclipse.org
commit 94c8fd55e3
1 changed files with 3 additions and 1 deletions

View File

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