Index: java/util/logging/Level.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/logging/Level.java,v retrieving revision 1.5 diff -u -r1.5 Level.java --- java/util/logging/Level.java 11 Mar 2003 23:17:00 -0000 1.5 +++ java/util/logging/Level.java 6 May 2004 11:16:13 -0000 @@ -40,9 +40,9 @@ package java.util.logging; +import java.io.Serializable; import java.util.ResourceBundle; - /** * A class for indicating logging levels. A number of commonly used * levels is pre-defined (such as java.util.logging.Level.INFO), @@ -52,8 +52,7 @@ * * @author Sascha Brawer */ -public class Level - implements java.io.Serializable +public class Level implements Serializable { /* The integer values are the same as in the Sun J2SE 1.4. * They have been obtained with a test program. In J2SE 1.4.1,