Browse Source

Fix @since tag on RefDatabase#getRefsByPrefix

Change-Id: Ic1615e680a131ef178c62c4ea92d2b389a0afd2b
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.2.0.201811281532-m3
Matthias Sohn 5 years ago
parent
commit
6a2be5c12c
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java

+ 3
- 3
org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java View File

@@ -424,11 +424,11 @@ public abstract class RefDatabase {
* @param prefixes
* strings that names of refs should start with.
* @return immutable list of refs whose names start with one of
* {@code prefixes}. Refs can be unsorted and may contain
* duplicates if the prefixes overlap.
* {@code prefixes}. Refs can be unsorted and may contain duplicates
* if the prefixes overlap.
* @throws java.io.IOException
* the reference space cannot be accessed.
* @since 5.1
* @since 5.2
*/
@NonNull
public List<Ref> getRefsByPrefix(String... prefixes) throws IOException {

Loading…
Cancel
Save