blob: b10cad4ad8325e38f6dd86c6ee4fd345748fded6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package de.hype.bbsentials.client;
public class DebugThread implements Runnable {
@Override
public void run() {
loop();
//place a breakpoint for only this thread here.
}
public void loop() {
}
}
|