From 724626a9cc183ca3c80852c25c272d9c837a2ac5 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Fri, 30 Aug 2024 16:46:26 +0200 Subject: [PATCH] Remove deprecated StashApplyCommand#setApplyUntracked method Change-Id: I23e3ed3259edad3a22b59cca938f041b39ebf0cb --- .../src/org/eclipse/jgit/api/StashApplyCommand.java | 13 ------------- 1 file changed, 13 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 1eac1ecd83..b0b715e06b 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/StashApplyCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/StashApplyCommand.java @@ -304,19 +304,6 @@ public class StashApplyCommand extends GitCommand { return this; } - /** - * Whether the command should restore untracked files - * - * @param applyUntracked - * true (default) if the command should restore untracked files - * @since 3.4 - * @deprecated use {@link #setRestoreUntracked} instead - */ - @Deprecated - public void setApplyUntracked(boolean applyUntracked) { - this.restoreUntracked = applyUntracked; - } - /** * Whether the command should restore untracked files * -- 2.39.5