This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
FYI: Patch: java.util.logging.Handler mergelet
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Fri, 18 Jul 2003 18:13:38 +0200
- Subject: FYI: Patch: java.util.logging.Handler mergelet
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list,
I commited the attached patch to merge java.util.logging with
classpath again.
Michael
- --
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE/GByyWSOgCCdjSDsRAmHBAJ0TSfozHm+ywSo8ZuRRvk5J8D0LegCfcH1S
ICWNLnewptQPTAzNxdV0Fg4=
=0Us6
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.2033
diff -u -b -B -r1.2033 ChangeLog
--- ChangeLog 17 Jul 2003 20:26:50 -0000 1.2033
+++ ChangeLog 18 Jul 2003 16:05:46 -0000
@@ -1,3 +1,8 @@
+2003-07-18 Mark Wielaard <mark@klomp.org>
+
+ * java/util/logging/Handler.java (isLoggable): Check record level
+ smaller or equal.
+
2003-07-17 Michael Koch <konqueror@gmx.de>
* gnu/java/awt/peer/gtk/GtkToolkit.java:
Index: java/util/logging/Handler.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/util/logging/Handler.java,v
retrieving revision 1.1
diff -u -b -B -r1.1 Handler.java
--- java/util/logging/Handler.java 21 Jun 2003 10:31:55 -0000 1.1
+++ java/util/logging/Handler.java 18 Jul 2003 16:05:46 -0000
@@ -379,7 +379,7 @@
*/
public boolean isLoggable(LogRecord record)
{
- if (record.getLevel().intValue() < level.intValue())
+ if (record.getLevel().intValue() <= level.intValue())
return false;
if (filter != null)