]> source.dussan.org Git - jgit.git/commitdiff
Add missing @since tags 59/203459/1
authorMatthias Sohn <matthias.sohn@sap.com>
Tue, 1 Aug 2023 22:19:02 +0000 (00:19 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Tue, 1 Aug 2023 22:19:02 +0000 (00:19 +0200)
This was missed in c353645a09b6

Change-Id: I4ae5b13bd7bfd09c113d91ece727a26706660826

org.eclipse.jgit/src/org/eclipse/jgit/revwalk/FooterLine.java
org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java

index eeaccc6d3300f450377429f822237b58064b68dc..2d396d57c50ff5d2660ae04ef0fafa9aa2df5557 100644 (file)
@@ -56,6 +56,7 @@ public final class FooterLine {
         *            the message to extract footers from.
         * @return ordered list of footer lines; empty list if no footers found.
         * @see RevCommit#getFooterLines()
+        * @since 6.7
         */
        public static List<FooterLine> fromMessage(
                        String str) {
@@ -69,6 +70,7 @@ public final class FooterLine {
         *            the raw message to extract footers from.
         * @return ordered list of footer lines; empty list if no footers found.
         * @see RevCommit#getFooterLines()
+        * @since 6.7
         */
        public static List<FooterLine> fromMessage(
                        byte[] raw) {
@@ -122,6 +124,7 @@ public final class FooterLine {
         *         footer appeared more than once. Empty list if no footers appear
         *         with the specified key, or there are no footers at all.
         * @see #fromMessage
+        * @since 6.7
         */
        public static List<String> getValues(List<FooterLine> footers, String keyName) {
                return getValues(footers, new FooterKey(keyName));
@@ -139,6 +142,7 @@ public final class FooterLine {
         *         footer appeared more than once. Empty list if no footers appear
         *         with the specified key, or there are no footers at all.
         * @see #fromMessage
+        * @since 6.7
         */
        public static List<String> getValues(List<FooterLine> footers, FooterKey key) {
                if (footers.isEmpty())
index 1c98336b99be9333eb69536a7f9d2d6cdfe7043b..00e55f5bb3e876b67f791be91493d41fa7232ced 100644 (file)
@@ -875,8 +875,9 @@ public final class RawParseUtils {
         * @param buffer
         *            buffer to scan.
         * @return the Java character set representation. Never null. Default to
-        *            UTF-8.
+        *         UTF-8.
         * @see #parseEncoding(byte[])
+        * @since 6.7
         */
        public static Charset guessEncoding(byte[] buffer) {
                try {