mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-11 18:25:40 +02:00
Use characters instead of strings.
This commit is contained in:
parent
61717a6a3e
commit
206203d375
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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() + ']';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue