1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-11 10:15:39 +02:00

Use characters instead of strings.

This commit is contained in:
Mikhail Khodjaiants 2004-10-18 14:42:36 +00:00
parent 61717a6a3e
commit 206203d375
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2004-10-18 Mikhail Khodjaiants
Use characters instead of strings.
* CDIException.java
2004-10-17 Alain Magloire 2004-10-17 Alain Magloire
Remove deprecated method in CDI Remove deprecated method in CDI
* cdi/org/eclipse/cdt/debug/core/model/ICDITarget.java * cdi/org/eclipse/cdt/debug/core/model/ICDITarget.java
@ -14,7 +18,7 @@
* CBreakpointManager.java * CBreakpointManager.java
* CDebugTarget.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. Partial fix for bug 39936 GDB hits modified conditional breakpoints when condition not satisfied.
Condition has to be set at the mi level. Condition has to be set at the mi level.
* CBreakpointManager.java * CBreakpointManager.java

View file

@ -45,7 +45,7 @@ public class CDIException extends Exception {
* @see java.lang.Object#toString() * @see java.lang.Object#toString()
*/ */
public String toString() { public String toString() {
return super.toString() + "["+ getDetailMessage() + "]"; return super.toString() + '['+ getDetailMessage() + ']';
} }
} }