This trivial patch fixes an error that would result in the inability for JDWP to resume threads. Currently, when JDWP goes to "resume" a thread, it will call suspend on it again which will just increase the suspend count, not cause the thread to resume. This went into Classpath yesterday, and I think it's important enough we should fix it here. ChangeLog 2007-03-28 Kyle Galloway * classpath/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java (executeResume): Call VMVirtualMachince.resumeThread. Questions/comments/concerns? - Kyle