Browse Source

Remove deprecated Repository#notifyIndexChanged

It is no longer used.

Change-Id: Ibf6ee80d5b6cd554295f4e657e087302770621b6
stable-5.1
Jonathan Nieder 7 years ago
parent
commit
e9d2a8bd85
  1. 10
      org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java

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

@ -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.
*

Loading…
Cancel
Save