]> source.dussan.org Git - jgit.git/commitdiff
Remove deprecated Repository#notifyIndexChanged 72/122972/1
authorJonathan Nieder <jrn@google.com>
Fri, 18 May 2018 16:23:03 +0000 (09:23 -0700)
committerJonathan Nieder <jrn@google.com>
Fri, 18 May 2018 16:23:03 +0000 (09:23 -0700)
It is no longer used.

Change-Id: Ibf6ee80d5b6cd554295f4e657e087302770621b6

org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java

index aa1f2de462c933498794c73c4d88e5e0063ef5ee..e7e2b003493e01a8e351710c101f006ba7f72940 100644 (file)
@@ -1567,16 +1567,6 @@ public abstract class Repository implements AutoCloseable {
         */
        public abstract void scanForRepoChanges() throws IOException;
 
-       /**
-        * Backward compatibility synonym for {@code notifyIndexChanged(true)}.
-        *
-        * @deprecated replaced by {@link #notifyIndexChanged(boolean)}
-        */
-       @Deprecated
-       public final void notifyIndexChanged() {
-               notifyIndexChanged(true);
-       }
-
        /**
         * Notify that the index changed by firing an IndexChangedEvent.
         *