]> source.dussan.org Git - jgit.git/commitdiff
Correct @since tags for ObjectFilter 90/47990/1
authorJonathan Nieder <jrn@google.com>
Fri, 15 May 2015 18:37:57 +0000 (11:37 -0700)
committerJonathan Nieder <jrn@google.com>
Fri, 15 May 2015 18:37:57 +0000 (11:37 -0700)
Although the stable-4.0 branch already exists, 4.0 development is
still happening on master until IP logs are sent for review, which
will happen at the end of May.

Change-Id: I863ba85c6303f8ef2eb13bca5e2d30e5d3c58b29
Signed-off-by: Jonathan Nieder <jrn@google.com>
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ObjectWalk.java
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/filter/ObjectFilter.java

index 10968ee83105f9079b50dcce4f10df2295ba4bbf..9c3af5a5dc3b95502c3a7c8c09eb47aec2a8eced 100644 (file)
@@ -259,7 +259,7 @@ public class ObjectWalk extends RevWalk {
         *
         * @return the current filter. Never null as a filter is always needed.
         *
-        * @since 4.1
+        * @since 4.0
         */
        public ObjectFilter getObjectFilter() {
                return objectFilter;
@@ -279,7 +279,7 @@ public class ObjectWalk extends RevWalk {
         *            the new filter. If null the special {@link ObjectFilter#ALL}
         *            filter will be used instead, as it matches every object.
         *
-        * @since 4.1
+        * @since 4.0
         */
        public void setObjectFilter(ObjectFilter newFilter) {
                assertNotStarted();
index a1d66c8e3ed4bd7286ba10d9d17048dd654a4f0e..44ebb9c60da4dd02cf62f9b3f12cd28631511487 100644 (file)
@@ -57,7 +57,7 @@ import org.eclipse.jgit.revwalk.ObjectWalk;
  * Applications should install the filter on an ObjectWalk by
  * {@link ObjectWalk#setObjectFilter(ObjectFilter)} prior to starting traversal.
  *
- * @since 4.1
+ * @since 4.0
  */
 public abstract class ObjectFilter {
        /** Default filter that always returns true. */