Skip to main content

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

Thanks Pawel.

DD bug - 187847

CDT bug - 187849

 


From: dsdp-dd-dev-bounces@xxxxxxxxxxx [mailto:dsdp-dd-dev-bounces@xxxxxxxxxxx] On Behalf Of Pawel Piech
Sent: Friday, May 18, 2007 11:46 AM
To: Device Debugging developer discussions
Subject: Re: [dsdp-dd-dev] DsfMIAsyncRecord.java

 

Hi Dobrin,
We copied this class from CDI/MI and refactored it for use in DSF.  Its seems that this bug just carried over cleanly from there.  Fortunately since this is just toString() it probably doesn't have a practical impact, except for output in the log.  But in any case, could you please file a bug on this in DSDP/DD as well as CDT?
Thank You,
-Pawel

Alexiev, Dobrin wrote:

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
_______________________________________________
dsdp-dd-dev mailing list
dsdp-dd-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/dsdp-dd-dev
  

 


Back to the top