You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2007/07/11 12:19:04 UTC

svn commit: r555230 - /harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/Level.java

Author: tellison
Date: Wed Jul 11 03:18:59 2007
New Revision: 555230

URL: http://svn.apache.org/viewvc?view=rev&rev=555230
Log:
Level#parse method should not be final

Modified:
    harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/Level.java

Modified: harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/Level.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/Level.java?view=diff&rev=555230&r1=555229&r2=555230
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/Level.java (original)
+++ harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/Level.java Wed Jul 11 03:18:59 2007
@@ -104,7 +104,7 @@
      * @throws IllegalArgumentException
      *             if <code>name</code> is not valid.
      */
-    public static final Level parse(String name) {
+    public static Level parse(String name) throws IllegalArgumentException {
         if (name == null) {
             // logging.1C=The 'name' parameter is null.
             throw new NullPointerException(Messages.getString("logging.1C")); //$NON-NLS-1$