From 4de2a9d57d76446f709bb25a4575e55c91799c80 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Tue, 27 Mar 2018 00:35:40 +0200 Subject: [PATCH] Add missing @since tag and silence API error These methods were introduced for 4.11.1 so we have to silence the API error adding API in a service release raises. Change-Id: Ic847cebbed439912d3979ec2ec1809f77a28f61e Signed-off-by: Matthias Sohn --- org.eclipse.jgit/.settings/.api_filters | 8 ++++++++ .../src/org/eclipse/jgit/lib/ObjectIdSerializer.java | 2 ++ 2 files changed, 10 insertions(+) diff --git a/org.eclipse.jgit/.settings/.api_filters b/org.eclipse.jgit/.settings/.api_filters index dd960907f..d4a059110 100644 --- a/org.eclipse.jgit/.settings/.api_filters +++ b/org.eclipse.jgit/.settings/.api_filters @@ -1,5 +1,13 @@ + + + + + + + + diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdSerializer.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdSerializer.java index 96c7cee1c..4f8bd326b 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdSerializer.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdSerializer.java @@ -108,6 +108,7 @@ public class ObjectIdSerializer { * the object id to serialize; never null * @throws IOException * the stream writing failed + * @since 4.11 */ public static void writeWithoutMarker(OutputStream out, @NonNull AnyObjectId id) throws IOException { @@ -147,6 +148,7 @@ public class ObjectIdSerializer { * @return the object id; never null * @throws IOException * there was an error reading the stream + * @since 4.11 */ @NonNull public static ObjectId readWithoutMarker(InputStream in) throws IOException {