summaryrefslogtreecommitdiff
path: root/gnu/classpath
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2008-01-11 21:22:57 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2008-01-11 21:22:57 +0000
commit19d2fd74b3243b0450a5f17324eb29fb2d087b52 (patch)
treeafefd6311e0f25c89bb7d10b8ef631be6df91fda /gnu/classpath
parent4f26927320f39e549200b8b60a65d4f88f1d577d (diff)
downloadclasspath-19d2fd74b3243b0450a5f17324eb29fb2d087b52.tar.gz
2008-01-09 Stefan Huehner <stefan@huehner.org>
* gnu/classpath/jdwp/event/ExceptionEvent.java, * gnu/java/awt/peer/gtk/GtkMainThread.java: Use Boolean.TRUE|FALSE instead of new Boolean(true|false) * gnu/java/rmi/server/ConnectionRunnerPool.java, * gnu/xml/aelfred2/XmlParser.java, * gnu/xml/libxmlj/dom/GnomeXPathResult.java, * gnu/xml/stream/XIncludeFilter.java: Use Integer|Double|Charater.toString(var) instead of new Integer|Double|Character(var).toString()
Diffstat (limited to 'gnu/classpath')
-rw-r--r--gnu/classpath/jdwp/event/ExceptionEvent.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/classpath/jdwp/event/ExceptionEvent.java b/gnu/classpath/jdwp/event/ExceptionEvent.java
index 1303c09be..1bb339969 100644
--- a/gnu/classpath/jdwp/event/ExceptionEvent.java
+++ b/gnu/classpath/jdwp/event/ExceptionEvent.java
@@ -117,9 +117,9 @@ public class ExceptionEvent
return _exception.getClass();
else if (type == EVENT_EXCEPTION_CAUGHT)
if (_catchLocation.getMethod() != null)
- return new Boolean(true);
+ return Boolean.TRUE;
else
- return new Boolean(false);
+ return Boolean.FALSE;
return null;
}