diff options
Diffstat (limited to 'libjava/gnu/java/rmi/rmic/RMIC.java')
-rw-r--r-- | libjava/gnu/java/rmi/rmic/RMIC.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/gnu/java/rmi/rmic/RMIC.java b/libjava/gnu/java/rmi/rmic/RMIC.java index 82bb37e..a7080f1 100644 --- a/libjava/gnu/java/rmi/rmic/RMIC.java +++ b/libjava/gnu/java/rmi/rmic/RMIC.java @@ -1,5 +1,6 @@ -/* - Copyright (c) 1996, 1997, 1998, 1999, 2001, 2002, 2003 Free Software Foundation, Inc. +/* RMIC.java -- + Copyright (c) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004 + Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +8,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -37,20 +38,19 @@ exception statement from your version. */ package gnu.java.rmi.rmic; +import gnu.java.rmi.server.RMIHashes; import java.io.File; import java.io.FileWriter; -import java.io.PrintWriter; import java.io.IOException; +import java.io.PrintWriter; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.rmi.RemoteException; +import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; -import java.util.Arrays; import java.util.Set; -import gnu.java.rmi.server.RMIHashes; - public class RMIC { private String[] args; |