jdk/src/share/classes/sun/net/NetworkServer.java
changeset 10419 12c063b39232
parent 5506 202f599c92aa
child 14342 8435a30053c1
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   140     public Object clone() {
   140     public Object clone() {
   141         try {
   141         try {
   142             return super.clone();
   142             return super.clone();
   143         } catch (CloneNotSupportedException e) {
   143         } catch (CloneNotSupportedException e) {
   144             // this shouldn't happen, since we are Cloneable
   144             // this shouldn't happen, since we are Cloneable
   145             throw new InternalError();
   145             throw new InternalError(e);
   146         }
   146         }
   147     }
   147     }
   148 
   148 
   149     public NetworkServer () {
   149     public NetworkServer () {
   150     }
   150     }