2003-01-16 Michael Koch <konqueror@gmx.de>

* java/net/MulticastSocket.java
	(setInterface): Reindented.

From-SVN: r61379
This commit is contained in:
Michael Koch 2003-01-16 08:01:27 +00:00 committed by Michael Koch
parent 64510a4ff2
commit 676f46d083
2 changed files with 10 additions and 5 deletions

View 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.

View 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);