aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/lib
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2018-03-24 22:05:53 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2018-03-25 00:56:53 +0100
commitd8234d310db7e730fba4e8685ac3bf8fb94046e8 (patch)
treef3fe85a49b96c6e7518753d4e13dd930afc6d589 /org.eclipse.jgit/src/org/eclipse/jgit/lib
parent0d9732b54f930b2cbc4cd4bee3afca0336d9eb1e (diff)
downloadjgit-d8234d310db7e730fba4e8685ac3bf8fb94046e8.tar.gz
jgit-d8234d310db7e730fba4e8685ac3bf8fb94046e8.zip
Add missing @since tags for new API
These methods were added after 4.11 so strictly speaking they violate semantic versioning since new API requires increasing the minor version number. Hence pretend these methods were introduced in 5.0 Change-Id: I7793ead16577dc1f2ddea09ba6b055103c783555 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdSerializer.java2
1 files changed, 2 insertions, 0 deletions
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 96c7cee1c6..26a0a28d07 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 5.0
*/
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 5.0
*/
@NonNull
public static ObjectId readWithoutMarker(InputStream in) throws IOException {