Merge "Remove InputMethodManager.ImeThreadFactory, which is unused" into sc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
e0a1abd54b
@@ -115,7 +115,6 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.concurrent.CountDownLatch;
|
||||
import java.util.concurrent.ThreadFactory;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
@@ -1083,19 +1082,6 @@ public final class InputMethodManager {
|
||||
}
|
||||
}
|
||||
|
||||
private static class ImeThreadFactory implements ThreadFactory {
|
||||
private final String mThreadName;
|
||||
|
||||
ImeThreadFactory(String name) {
|
||||
mThreadName = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Thread newThread(Runnable r) {
|
||||
return new Thread(r, mThreadName);
|
||||
}
|
||||
}
|
||||
|
||||
final IInputMethodClient.Stub mClient = new IInputMethodClient.Stub() {
|
||||
@Override
|
||||
protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) {
|
||||
|
||||
Reference in New Issue
Block a user