OSDN Git Service

2003-01-16 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 16 Jan 2003 08:01:27 +0000 (08:01 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 16 Jan 2003 08:01:27 +0000 (08:01 +0000)
* java/net/MulticastSocket.java
(setInterface): Reindented.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61379 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/net/MulticastSocket.java

index 62f54b5..cf5028f 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-16  Michael Koch  <konqueror@gmx.de>
+
+       * java/net/MulticastSocket.java
+       (setInterface): Reindented.
+
 2003-01-15  Scott Gilbertson  <scottg@mantatest.com>
 
        * gnu/gcj/xlib/natGC.cc (fillPolygon): New method.
index 2535a48..dca1a85 100644 (file)
@@ -161,15 +161,15 @@ public class MulticastSocket extends DatagramSocket
     return impl.getTimeToLive();
   }
 
-   /**
-    * Sets the interface to use for sending multicast packets.
-    *
+  /**
+   * Sets the interface to use for sending multicast packets.
+   *
    * @param addr The new interface to use.
-    *
+   *
    * @exception SocketException If an error occurs.
    *
    * @since 1.4
-    */
+   */
   public void setInterface(InetAddress addr) throws SocketException
   {
     impl.setOption(SocketOptions.IP_MULTICAST_IF, addr);