< prev index next >

test/java/net/MulticastSocket/B6427403.java

Print this page
rev 14513 : 8177536: Avoid Apple Peer-to-Peer interfaces in networking tests
Reviewed-by: michaelm, rriggs

@@ -21,19 +21,16 @@
  * questions.
  */
 
 /*
  * @test
- *
  * @bug 6427403
- *
  * @summary java.net.MulticastSocket.joinGroup() reports 'socket closed'
- *
  */
 import java.net.*;
 import java.io.*;
-import java.util.*;
+
 public class B6427403 {
     public static void main( String[] args ) throws IOException {
         InetAddress lh = InetAddress.getLocalHost();
         MulticastSocket ms = new MulticastSocket( new InetSocketAddress(lh, 0) );
         ms.joinGroup( InetAddress.getByName("224.80.80.80") );
< prev index next >