Merge "Remove InputMethodManager.ImeThreadFactory, which is unused" into sc-dev

This commit is contained in:
TreeHugger Robot
2021-02-10 22:15:22 +00:00
committed by Android (Google) Code Review

View File

@@ -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) {