Index: java/beans/XMLDecoder.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/beans/XMLDecoder.java,v retrieving revision 1.1 diff -u -r1.1 XMLDecoder.java --- java/beans/XMLDecoder.java 2 Jan 2005 23:53:42 -0000 1.1 +++ java/beans/XMLDecoder.java 11 Jan 2005 09:43:56 -0000 @@ -1,7 +1,5 @@ -/* -java.beans.XMLDecoder - -Copyright (C) 2004 Free Software Foundation, Inc. +/* java.beans.XMLDecoder -- + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -37,18 +35,20 @@ obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ + package java.beans; +import gnu.java.beans.decoder.DecoderContext; +import gnu.java.beans.decoder.DefaultExceptionListener; +import gnu.java.beans.decoder.PersistenceParser; + import java.io.IOException; import java.io.InputStream; import java.util.Iterator; import java.util.NoSuchElementException; -import gnu.java.beans.decoder.DefaultExceptionListener; -import gnu.java.beans.decoder.PersistenceParser; -import gnu.java.beans.decoder.DecoderContext; - -/** The XMLDecoder reads XML data that is structured according to +/** + * The XMLDecoder reads XML data that is structured according to * this DTD * and creates objects according to the content. Usually such data is generated using the * address@hidden XMLEncoder} class. @@ -59,7 +59,7 @@ * <string>Hello World</string> * <int>200</int> * </java> - * *

To read the String and the Integer instance the following can be used (assume * the XML data can be obtained from the InputStream):

* Index: java/io/File.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/File.java,v retrieving revision 1.55 diff -u -r1.55 File.java --- java/io/File.java 6 Dec 2004 20:43:13 -0000 1.55 +++ java/io/File.java 11 Jan 2005 09:43:56 -0000 @@ -1,5 +1,5 @@ /* File.java -- Class representing a file on disk - Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004 + Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -40,6 +40,7 @@ package java.io; import gnu.classpath.SystemProperties; + import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; Index: java/lang/System.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/lang/System.java,v retrieving revision 1.49 diff -u -r1.49 System.java --- java/lang/System.java 7 Jan 2005 15:08:23 -0000 1.49 +++ java/lang/System.java 11 Jan 2005 09:43:56 -0000 @@ -1,5 +1,5 @@ /* System.java -- useful methods to interface with the system - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 + Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -39,8 +39,8 @@ package java.lang; -import gnu.classpath.VMStackWalker; import gnu.classpath.SystemProperties; +import gnu.classpath.VMStackWalker; import java.io.InputStream; import java.io.PrintStream; Index: java/net/Inet4Address.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/net/Inet4Address.java,v retrieving revision 1.13 diff -u -r1.13 Inet4Address.java --- java/net/Inet4Address.java 3 Jan 2005 11:13:44 -0000 1.13 +++ java/net/Inet4Address.java 11 Jan 2005 09:43:56 -0000 @@ -1,5 +1,5 @@ /* Inet4Address.java -- - Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -39,7 +39,6 @@ package java.net; import java.io.ObjectStreamException; -import java.util.Arrays; /* * Written using on-line Java Platform 1.4 API Specification and Index: java/util/Currency.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/Currency.java,v retrieving revision 1.8 diff -u -r1.8 Currency.java --- java/util/Currency.java 30 Dec 2004 12:41:12 -0000 1.8 +++ java/util/Currency.java 11 Jan 2005 09:43:56 -0000 @@ -1,5 +1,5 @@ /* Currency.java -- Representation of a currency - Copyright (C) 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -43,7 +43,6 @@ import java.io.IOException; import java.io.ObjectStreamException; import java.io.Serializable; -import java.util.Properties; /** * Representation of a currency for a particular locale. Each currency Index: java/util/ResourceBundle.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/ResourceBundle.java,v retrieving revision 1.30 diff -u -r1.30 ResourceBundle.java --- java/util/ResourceBundle.java 7 Jan 2005 15:08:23 -0000 1.30 +++ java/util/ResourceBundle.java 11 Jan 2005 09:43:56 -0000 @@ -1,5 +1,5 @@ /* ResourceBundle -- aids in loading resource bundles - Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004 + Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -40,10 +40,9 @@ package java.util; import gnu.classpath.VMStackWalker; + import java.io.IOException; import java.io.InputStream; -import java.security.AccessController; -import java.security.PrivilegedAction; /** * A resource bundle contains locale-specific data. If you need localized