Browse Source

Don't re-expose this in this PR, will do it some other time when actually needed.

pull/114/head
Shane Mc Cormack 8 years ago
parent
commit
03fce829e2
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      irc/src/com/dmdirc/parser/irc/IRCParser.java

+ 1
- 2
irc/src/com/dmdirc/parser/irc/IRCParser.java View File

@@ -211,8 +211,6 @@ public class IRCParser extends BaseSocketAwareParser implements SecureParser, En
211 211
      * {@link #mySocket} will be an {@link SSLSocket}.
212 212
      */
213 213
     private Socket rawSocket;
214
-    /** Socket that we can do stuff to. */
215
-    private Socket mySocket;
216 214
     /** Used for writing to the server. */
217 215
     private final OutputQueue out;
218 216
     /** The encoder to use to encode incoming lines. */
@@ -744,6 +742,7 @@ public class IRCParser extends BaseSocketAwareParser implements SecureParser, En
744 742
 
745 743
         rawSocket = getSocketFactory().createSocket(connectUri.getHost(), connectUri.getPort());
746 744
 
745
+        final Socket mySocket;
747 746
         if (getURI().getScheme().endsWith("s")) {
748 747
             callDebugInfo(DEBUG_SOCKET, "Server is SSL.");
749 748
 

Loading…
Cancel
Save