mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-20 22:26:54 +01:00
remove unused code
This commit is contained in:
parent
9a1a4f989f
commit
98e3cd4281
1 changed files with 0 additions and 15 deletions
|
@ -55,21 +55,6 @@ import junit.framework.Assert;
|
|||
|
||||
public class JNIThread extends Thread {
|
||||
|
||||
private static Set<JNIThread> s_curThreads = new HashSet<JNIThread>();
|
||||
|
||||
public static JNIThread getCurrent() {
|
||||
JNIThread result = null;
|
||||
synchronized( s_curThreads ) {
|
||||
// DbgUtils.logf( "JNIThread.getCurrent(): have %d threads",
|
||||
// s_curThreads.size() );
|
||||
if ( 1 == s_curThreads.size() ) {
|
||||
result = s_curThreads.iterator().next();
|
||||
}
|
||||
}
|
||||
// DbgUtils.logf( "JNIThread.getCurrent() => %H", result );
|
||||
return result;
|
||||
}
|
||||
|
||||
public enum JNICmd { CMD_NONE,
|
||||
// CMD_RUN,
|
||||
CMD_DRAW,
|
||||
|
|
Loading…
Reference in a new issue