From 206203d375007f2d08035af6617503c6b69015d6 Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Mon, 18 Oct 2004 14:42:36 +0000 Subject: [PATCH] Use characters instead of strings. --- debug/org.eclipse.cdt.debug.core/ChangeLog | 6 +++++- .../cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 8d9e6e50a99..694bdb17e07 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2004-10-18 Mikhail Khodjaiants + Use characters instead of strings. + * CDIException.java + 2004-10-17 Alain Magloire Remove deprecated method in CDI * cdi/org/eclipse/cdt/debug/core/model/ICDITarget.java @@ -14,7 +18,7 @@ * CBreakpointManager.java * CDebugTarget.java -2004-10-14 Mikhail Khodjaiants +2004-10-14 Partial fix for bug 39936 GDB hits modified conditional breakpoints when condition not satisfied. Condition has to be set at the mi level. * CBreakpointManager.java diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java index 7579295408e..565201527eb 100644 --- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java +++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java @@ -45,7 +45,7 @@ public class CDIException extends Exception { * @see java.lang.Object#toString() */ public String toString() { - return super.toString() + "["+ getDetailMessage() + "]"; + return super.toString() + '['+ getDetailMessage() + ']'; } }