From 88557046d2357627173cacff0af57a5f13b4da67 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Sun, 18 Aug 2024 16:19:05 -0400 Subject: [PATCH] AsteriskServer.java: Remove traces of previous merge conflict. In passing, changed "CRNL" to "CRLF" in javadoc because that is the more common phrasing. --- src/main/java/org/asteriskjava/live/AsteriskServer.java | 8 +++----- .../util/internal/SocketConnectionFacadeImpl.java | 8 +++----- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/src/main/java/org/asteriskjava/live/AsteriskServer.java b/src/main/java/org/asteriskjava/live/AsteriskServer.java index 4eea8687d..6e2e2c13e 100644 --- a/src/main/java/org/asteriskjava/live/AsteriskServer.java +++ b/src/main/java/org/asteriskjava/live/AsteriskServer.java @@ -333,12 +333,10 @@ void originateToApplicationAsync(String channel, String application, String data String getVersion() throws ManagerCommunicationException; /** - * <<<<<<< HEAD Returns the CVS revision of a given source file of this + * Returns the CVS revision of a given source file of this * Asterisk server.
- * ======= Returns the CVS revision of a given source file of this Asterisk - * server.
- * >>>>>>> refs/heads/release-1.1 For example getVersion("app_meetme.c") may - * return {1, 102} for CVS revision "1.102".
+ * For example getVersion("app_meetme.c") may return {1, 102} for + * CVS revision "1.102".
* Note that this feature is not available with Asterisk 1.0.x.
* You can use this feature if you need to write applications that behave * different depending on specific modules being available in a specific diff --git a/src/main/java/org/asteriskjava/util/internal/SocketConnectionFacadeImpl.java b/src/main/java/org/asteriskjava/util/internal/SocketConnectionFacadeImpl.java index 178a39dea..e50c6f0be 100644 --- a/src/main/java/org/asteriskjava/util/internal/SocketConnectionFacadeImpl.java +++ b/src/main/java/org/asteriskjava/util/internal/SocketConnectionFacadeImpl.java @@ -46,10 +46,8 @@ public class SocketConnectionFacadeImpl implements SocketConnectionFacade { private Trace trace; /** - * <<<<<<< HEAD Creates a new instance for use with the Manager API that - * uses UTF-8 as encoding and CRNL ("\r\n") as line delimiter. ======= - * Creates a new instance for use with the Manager API that uses CRNL - * ("\r\n") as line delimiter. >>>>>>> refs/heads/release-1.1 + * Creates a new instance for use with the Manager API that uses UTF-8 + * as the encoding and CRLF ("\r\n") as line delimiter. * * @param host the foreign host to connect to. * @param port the foreign port to connect to. @@ -64,7 +62,7 @@ public SocketConnectionFacadeImpl(String host, int port, boolean ssl, int timeou /** * Creates a new instance for use with the Manager API that uses the given - * encoding and CRNL ("\r\n") as line delimiter. + * encoding and CRLF ("\r\n") as line delimiter. * * @param host the foreign host to connect to. * @param port the foreign port to connect to.