diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-08-30 21:49:54 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-09-03 16:11:03 +0200 |
commit | 0d4e81e50cebce9a75f0a33b2106c9922375c77a (patch) | |
tree | d9230181b7839b640d18370ce8132025ee35ed52 | |
parent | 66f340865b9470fa8fbc9d12e0c08bf09ebf8364 (diff) | |
download | jgit-0d4e81e50cebce9a75f0a33b2106c9922375c77a.tar.gz jgit-0d4e81e50cebce9a75f0a33b2106c9922375c77a.zip |
Remove deprecated ReceivePack#setEchoCommandFailures method
Change-Id: Ieeeb33b8b3dc8272023af5d47b3330f4a94c5b96
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java index 21752a1294..6f211e0794 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java @@ -2103,22 +2103,6 @@ public class ReceivePack { } /** - * Set whether this class will report command failures as warning messages - * before sending the command results. - * - * @param echo - * if true this class will report command failures as warning - * messages before sending the command results. This is usually - * not necessary, but may help buggy Git clients that discard the - * errors when all branches fail. - * @deprecated no widely used Git versions need this any more - */ - @Deprecated - public void setEchoCommandFailures(boolean echo) { - // No-op. - } - - /** * Get the client session-id * * @return The client session-id. |