From 1f9a4180e812766760de08e765246e2aed061f33 Mon Sep 17 00:00:00 2001 From: Eric House Date: Tue, 25 Feb 2014 07:56:22 -0800 Subject: [PATCH] remove misleading comments --- .../XWords4/src/org/eehouse/android/xw4/RelayService.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/RelayService.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/RelayService.java index 84408f8ba..26c8c63ef 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/RelayService.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/RelayService.java @@ -434,7 +434,6 @@ public class RelayService extends XWService } } // startUDPThreadsIfNot - // Some of this must not be done on main (UI) thread private void connectSocket() { if ( null == m_UDPSocket ) { @@ -443,7 +442,7 @@ public class RelayService extends XWService try { m_UDPSocket = new DatagramSocket(); m_UDPSocket.setSoTimeout(30 * 1000); // timeout so we can log - // put on background thread!! + InetAddress addr = InetAddress.getByName( host ); m_UDPSocket.connect( addr, port ); // remember this address } catch( java.net.SocketException se ) {