Simplify rotation watcher call
Remove unnecessary private method (which was wrongly public).
This commit is contained in:
parent
ac4c8b4a3f
commit
e1cd75792c
1 changed files with 1 additions and 5 deletions
|
@ -52,7 +52,7 @@ public final class Device {
|
|||
screenInfo = ScreenInfo.computeScreenInfo(displayInfo, options.getCrop(), options.getMaxSize(), options.getLockedVideoOrientation());
|
||||
layerStack = displayInfo.getLayerStack();
|
||||
|
||||
registerRotationWatcher(new IRotationWatcher.Stub() {
|
||||
serviceManager.getWindowManager().registerRotationWatcher(new IRotationWatcher.Stub() {
|
||||
@Override
|
||||
public void onRotationChanged(int rotation) throws RemoteException {
|
||||
synchronized (Device.this) {
|
||||
|
@ -134,10 +134,6 @@ public final class Device {
|
|||
return serviceManager.getPowerManager().isScreenOn();
|
||||
}
|
||||
|
||||
public void registerRotationWatcher(IRotationWatcher rotationWatcher, int displayId) {
|
||||
serviceManager.getWindowManager().registerRotationWatcher(rotationWatcher, displayId);
|
||||
}
|
||||
|
||||
public synchronized void setRotationListener(RotationListener rotationListener) {
|
||||
this.rotationListener = rotationListener;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue