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

Bug 313964 - [vm] StackOverflowException in a toString() method in AbstractVMProvider.

This commit is contained in:
Pawel Piech 2010-05-21 18:49:02 +00:00
parent 7141f555ad
commit 2f627f91d0

View file

@ -387,7 +387,7 @@ abstract public class AbstractVMProvider implements IVMProvider, IVMEventListene
rm.done();
}
@Override public String toString() {
return "Result of a delta for event: '" + event.toString() + "' in VMP: '" + this + "'" + "\n" + getData().toString(); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
return "Result of a delta for event: '" + event.toString() + "' in VMP: '" + AbstractVMProvider.this + "'" + "\n" + getData().toString(); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
}
});
} else {