Merge "Cleanup of not used ImeTracing.getInstance() try-catch block" into udc-dev

This commit is contained in:
Felix Stern
2023-03-13 09:42:06 +00:00
committed by Android (Google) Code Review

View File

@@ -62,11 +62,7 @@ public abstract class ImeTracing {
if (isSystemProcess()) {
sInstance = new ImeTracingServerImpl();
} else {
try {
sInstance = new ImeTracingClientImpl();
} catch (RuntimeException e) {
Log.e(TAG, "Exception while creating ImeTracingClientImpl instance", e);
}
sInstance = new ImeTracingClientImpl();
}
}
return sInstance;