From e9d2a8bd85d700bb6f380530c53ab8f7a0415c4d Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Fri, 18 May 2018 09:23:03 -0700 Subject: [PATCH] Remove deprecated Repository#notifyIndexChanged It is no longer used. Change-Id: Ibf6ee80d5b6cd554295f4e657e087302770621b6 --- .../src/org/eclipse/jgit/lib/Repository.java | 10 ---------- 1 file changed, 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 @@ -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. * -- 2.39.5