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

Commit afcb65c2 authored by Adam Cohen's avatar Adam Cohen Committed by Android Git Automerger
Browse files

am 296c1616: Merge "Catching all Exceptions when calling through to...

am 296c1616: Merge "Catching all Exceptions when calling through to RemoteViewsFactory" into honeycomb-mr1

* commit '296c1616':
  Catching all Exceptions when calling through to RemoteViewsFactory
parents b0204d0a 296c1616
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ class AppWidgetService extends IAppWidgetService.Stub
                IRemoteViewsAdapterConnection.Stub.asInterface(mConnectionCb);
            try {
                cb.onServiceConnected(service);
            } catch (RemoteException e) {
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
@@ -147,7 +147,7 @@ class AppWidgetService extends IAppWidgetService.Stub
                IRemoteViewsAdapterConnection.Stub.asInterface(mConnectionCb);
            try {
                cb.onServiceDisconnected();
            } catch (RemoteException e) {
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
@@ -541,7 +541,7 @@ class AppWidgetService extends IAppWidgetService.Stub
                    IRemoteViewsFactory.Stub.asInterface(service);
                try {
                    cb.onDestroy(intent);
                } catch (RemoteException e) {
                } catch (Exception e) {
                    e.printStackTrace();
                }
                mContext.unbindService(this);