aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2018-09-25 21:58:05 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2018-09-25 21:58:05 +0200
commit6a2be5c12ceb388c89dce7e88a00ac51504973cb (patch)
treef76cf63b5a107b6441364d1a3a02ebdc6507e6d3 /org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java
parent6690a3d191bbffe5aede067e67b84bd3e55cc023 (diff)
downloadjgit-6a2be5c12ceb388c89dce7e88a00ac51504973cb.tar.gz
jgit-6a2be5c12ceb388c89dce7e88a00ac51504973cb.zip
Fix @since tag on RefDatabase#getRefsByPrefix
Change-Id: Ic1615e680a131ef178c62c4ea92d2b389a0afd2b Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java
index ac26b51364..68929b4220 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java
@@ -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 {