From: Matthias Sohn Date: Fri, 30 Aug 2024 14:44:16 +0000 (+0200) Subject: Remove deprecated RemoteSetUrlCommand#setUri method X-Git-Tag: v7.0.0.202409031743-r~35 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8c81cfc9c5718b79c3af47517780952c62200d0c;p=jgit.git Remove deprecated RemoteSetUrlCommand#setUri method Change-Id: Ib9041be0d88dd837aa68eda2b00f3aa9ebc54c27 --- diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteSetUrlCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteSetUrlCommand.java index b09742cba9..68ddce361f 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteSetUrlCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteSetUrlCommand.java @@ -81,18 +81,6 @@ public class RemoteSetUrlCommand extends GitCommand { return this; } - /** - * The new URL for the remote. - * - * @param uri - * an URL for the remote - * @deprecated use {@link #setRemoteUri} instead - */ - @Deprecated - public void setUri(URIish uri) { - this.remoteUri = uri; - } - /** * The new URL for the remote. *