mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 12:55:40 +02:00
Bug 187849: MIAsyncRecord.java prints multiple times
This commit is contained in:
parent
2122e4681c
commit
15c5a260f1
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ public abstract class MIAsyncRecord extends MIOOBRecord {
|
||||||
if (results != null) {
|
if (results != null) {
|
||||||
for (int i = 0; i < results.length; i++) {
|
for (int i = 0; i < results.length; i++) {
|
||||||
buffer.append(',');
|
buffer.append(',');
|
||||||
buffer.append(results.toString());
|
buffer.append(results[i].toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
buffer.append('\n');
|
buffer.append('\n');
|
||||||
|
|
Loading…
Add table
Reference in a new issue