From ee02be9c8a59d85d04b8a3d6573e26f0e3ad5a85 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Fri, 30 Aug 2024 16:45:34 +0200 Subject: [PATCH] Remove deprecated StashApplyCommand#setApplyIndex method Change-Id: I2183285f6ccba1b62a318e711f2451df5d083ca1 --- .../src/org/eclipse/jgit/api/StashApplyCommand.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/StashApplyCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/StashApplyCommand.java index e4157286f1..1eac1ecd83 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/StashApplyCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/StashApplyCommand.java @@ -260,18 +260,6 @@ public class StashApplyCommand extends GitCommand { } } - /** - * Whether to restore the index state - * - * @param applyIndex - * true (default) if the command should restore the index state - * @deprecated use {@link #setRestoreIndex} instead - */ - @Deprecated - public void setApplyIndex(boolean applyIndex) { - this.restoreIndex = applyIndex; - } - /** * Whether to restore the index state * -- 2.39.5