Imported GNU Classpath 0.19 + gcj-import-20051115.
* sources.am: Regenerated. * Makefile.in: Likewise. * scripts/makemake.tcl: Use glob -nocomplain. From-SVN: r107049
This commit is contained in:
parent
02e549bfaa
commit
8f523f3a10
1241 changed files with 97711 additions and 25284 deletions
|
@ -91,8 +91,9 @@ public class Socket
|
|||
|
||||
/**
|
||||
* True if the socket is bound.
|
||||
* Package private so it can be set from ServerSocket when accept is called.
|
||||
*/
|
||||
private boolean bound;
|
||||
boolean bound;
|
||||
|
||||
/**
|
||||
* True if input is shutdown.
|
||||
|
@ -324,7 +325,9 @@ public class Socket
|
|||
}
|
||||
catch (IOException e)
|
||||
{
|
||||
throw new SocketException(e.getMessage());
|
||||
SocketException se = new SocketException(e.toString());
|
||||
se.initCause(e);
|
||||
throw se;
|
||||
}
|
||||
|
||||
return impl;
|
||||
|
@ -481,7 +484,7 @@ public class Socket
|
|||
/**
|
||||
* Returns the local address to which this socket is bound. If this socket
|
||||
* is not connected, then a wildcard address, for which
|
||||
* @see isAnyLocalAddress() is <code>true</code>, is returned.
|
||||
* @see InetAddress#isAnyLocalAddress() is <code>true</code>, is returned.
|
||||
*
|
||||
* @return The local address
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue