Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[dsdp-dd-dev] DsfMIAsyncRecord.java

I was looking the DSF MI debugger as a reference. 
I noticed at the end of the file DsfMIAsyncRecord.java something that
looks like typo to me: 

>>> for (int i = 0; i < results.length; i++) {
>>>     buffer.append(',');
>>>     buffer.append(results.toString());

Shouldn't the last line be?
	buffer.append(results[i].toString());

Thanks
Dobrin


Back to the top