/[classpath]/classpath/java/net/SocketImpl.java
ViewVC logotype

Diff of /classpath/java/net/SocketImpl.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.16 by mkoch, Fri Jun 20 05:34:37 2003 UTC revision 1.17 by mkoch, Tue Jun 24 11:24:49 2003 UTC
# Line 287  public abstract class SocketImpl impleme Line 287  public abstract class SocketImpl impleme
287     *     *
288     * @exception IOException if an error occurs     * @exception IOException if an error occurs
289     */     */
290    protected abstract void shutdownInput () throws IOException;    protected void shutdownInput () throws IOException
291      {
292        throw new IOException ("Not implemented in this socket class");
293      }
294    
295    /**    /**
296     * Shut down the output side of this socket.  Subsequent writes will     * Shut down the output side of this socket.  Subsequent writes will
# Line 295  public abstract class SocketImpl impleme Line 298  public abstract class SocketImpl impleme
298     *     *
299     * @exception IOException if an error occurs     * @exception IOException if an error occurs
300     */     */
301    protected abstract void shutdownOutput () throws IOException;    protected void shutdownOutput () throws IOException
302      {
303        throw new IOException ("Not implemented in this socket class");
304      }
305  }  }

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26