1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Bug 187849: MIAsyncRecord.java prints multiple times

This commit is contained in:
Mikhail Khodjaiants 2007-05-18 16:56:20 +00:00
parent 2122e4681c
commit 15c5a260f1

View file

@ -65,7 +65,7 @@ public abstract class MIAsyncRecord extends MIOOBRecord {
if (results != null) {
for (int i = 0; i < results.length; i++) {
buffer.append(',');
buffer.append(results.toString());
buffer.append(results[i].toString());
}
}
buffer.append('\n');