1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 13:05:22 +02:00
This commit is contained in:
Alain Magloire 2003-12-16 22:24:40 +00:00
parent dca7bf0c47
commit f11ca9e4d5

View file

@ -1,3 +1,15 @@
2003-12-16 Alain Magloire
In JDK-1.4.x a new method was added to StringBuffer
StringBuffer.append(StringBuffer). This is not in
JDK-1.3.x, So when compiling with JDK-1.4.x
Running on JDK-1.3.x will not work.
We need to force the toString(), this:
buffer.append(sb.toString());
instead of
buffer.append(sb);
* src/org/eclipose/cdt/debug/mi/core/command/MICommand.java
2003-12-16 Mikhail Khodjaiants 2003-12-16 Mikhail Khodjaiants
Show the gdb arguments when tracing. Show the gdb arguments when tracing.