summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2024-01-22 22:43:31 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2024-01-23 09:01:17 +0100
commit74471b8d755bdfe15a0585e49e1449788b4fc843 (patch)
tree4c41238d3244377ab7ca1149da14fbdd02e5d871 /org.eclipse.jgit
parentf94619d498d042d31feee3e00c746df293306953 (diff)
downloadjgit-74471b8d755bdfe15a0585e49e1449788b4fc843.tar.gz
jgit-74471b8d755bdfe15a0585e49e1449788b4fc843.zip
RawParseUtils: Add missing @since tag for new API method
This method was introduced in 8116f66b9c. Change-Id: Ifd3341a03464a1d7164c176cf3a6cf83f45a2747
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java
index fccdca8b9d..c87a5e60f2 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java
@@ -615,6 +615,7 @@ public final class RawParseUtils {
* @param b
* buffer to scan.
* @return whether the message starts with any known headers
+ * @since 6.9
*/
public static final boolean hasAnyKnownHeaders(byte[] b) {
return match(b, 0, tree) != -1 || match(b, 0, parent) != -1