aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2024-08-30 16:45:34 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2024-09-03 13:51:56 +0000
commitee02be9c8a59d85d04b8a3d6573e26f0e3ad5a85 (patch)
treeaadc23e7b3ce93e2a32cedab50b87e7d37fbc7d8 /org.eclipse.jgit/src
parent8c81cfc9c5718b79c3af47517780952c62200d0c (diff)
downloadjgit-ee02be9c8a59d85d04b8a3d6573e26f0e3ad5a85.tar.gz
jgit-ee02be9c8a59d85d04b8a3d6573e26f0e3ad5a85.zip
Remove deprecated StashApplyCommand#setApplyIndex method
Change-Id: I2183285f6ccba1b62a318e711f2451df5d083ca1
Diffstat (limited to 'org.eclipse.jgit/src')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/StashApplyCommand.java12
1 files changed, 0 insertions, 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
@@ -263,18 +263,6 @@ public class StashApplyCommand extends GitCommand<ObjectId> {
/**
* 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
- *
* @param restoreIndex
* true (default) if the command should restore the index state
* @return {@code this}