summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Nieder <jrn@google.com>2018-05-18 09:23:03 -0700
committerJonathan Nieder <jrn@google.com>2018-05-18 09:23:03 -0700
commite9d2a8bd85d700bb6f380530c53ab8f7a0415c4d (patch)
tree473c967e9348a83de17669e9d2c332168e593c99
parent8c580dd4c02213020d5a928df332a6641d066328 (diff)
downloadjgit-e9d2a8bd85d700bb6f380530c53ab8f7a0415c4d.tar.gz
jgit-e9d2a8bd85d700bb6f380530c53ab8f7a0415c4d.zip
Remove deprecated Repository#notifyIndexChanged
It is no longer used. Change-Id: Ibf6ee80d5b6cd554295f4e657e087302770621b6
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java
index aa1f2de462..e7e2b00349 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java
@@ -1568,16 +1568,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.
*
* @param internal