diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-08-30 16:41:15 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-09-03 13:50:39 +0000 |
commit | 30274153eaeeaeb7639810114219d05a3a1cc267 (patch) | |
tree | 9fb08f52c646b7f005b4b9102f04427401664034 /org.eclipse.jgit/src | |
parent | 373fbb4882f7d415c95dad23aba9e01ef2d3da9f (diff) | |
download | jgit-30274153eaeeaeb7639810114219d05a3a1cc267.tar.gz jgit-30274153eaeeaeb7639810114219d05a3a1cc267.zip |
Remove deprecated RemoteSetUrlCommand#setName method
Change-Id: I769e999b5990f83719e3c638da9dfd0be4c5b826
Diffstat (limited to 'org.eclipse.jgit/src')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteSetUrlCommand.java | 12 |
1 files changed, 0 insertions, 12 deletions
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 e3d01861fc..281e81026b 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteSetUrlCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteSetUrlCommand.java @@ -71,18 +71,6 @@ public class RemoteSetUrlCommand extends GitCommand<RemoteConfig> { /** * The name of the remote to change the URL for. * - * @param name - * a remote name - * @deprecated use {@link #setRemoteName} instead - */ - @Deprecated - public void setName(String name) { - this.remoteName = name; - } - - /** - * The name of the remote to change the URL for. - * * @param remoteName * a remote remoteName * @return {@code this} |