Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e1d9153 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Don't swallow exceptions"

parents 347f7b09 36a47145
Loading
Loading
Loading
Loading
+90 −94
Original line number Original line Diff line number Diff line
@@ -947,7 +947,6 @@ public class SurfaceView extends View implements ViewRootImpl.SurfaceChangedCall
                    + " left=" + (mWindowSpaceLeft != mLocation[0])
                    + " left=" + (mWindowSpaceLeft != mLocation[0])
                    + " top=" + (mWindowSpaceTop != mLocation[1]));
                    + " top=" + (mWindowSpaceTop != mLocation[1]));


            try {
            mVisible = mRequestedVisible;
            mVisible = mRequestedVisible;
            mWindowSpaceLeft = mLocation[0];
            mWindowSpaceLeft = mLocation[0];
            mWindowSpaceTop = mLocation[1];
            mWindowSpaceTop = mLocation[1];
@@ -1051,9 +1050,6 @@ public class SurfaceView extends View implements ViewRootImpl.SurfaceChangedCall
                    releaseSurfaces(false /* releaseSurfacePackage*/);
                    releaseSurfaces(false /* releaseSurfacePackage*/);
                }
                }
            }
            }
            } catch (Exception ex) {
                Log.e(TAG, "Exception configuring surface", ex);
            }
            if (DEBUG) Log.v(
            if (DEBUG) Log.v(
                TAG, "Layout: x=" + mScreenRect.left + " y=" + mScreenRect.top
                TAG, "Layout: x=" + mScreenRect.left + " y=" + mScreenRect.top
                + " w=" + mScreenRect.width() + " h=" + mScreenRect.height()
                + " w=" + mScreenRect.width() + " h=" + mScreenRect.height()