diff options
| author | 2013-03-11 22:58:33 +0000 | |
|---|---|---|
| committer | 2013-03-11 22:58:33 +0000 | |
| commit | e70748e78b0819bf485efdeabe7f8447b201b13a (patch) | |
| tree | d40ff5a60fe7806fa4b6c9d81be66c47e2c7db08 | |
| parent | 5ef14b259fa07f08b29fa7888d39128456dc253a (diff) | |
| parent | f083324b42e165c1f4d194c41a1ec6ba6c09ee20 (diff) | |
Merge "Remove unnecessary userid check" into jb-mr2-dev
| -rw-r--r-- | core/java/android/appwidget/AppWidgetHost.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/core/java/android/appwidget/AppWidgetHost.java b/core/java/android/appwidget/AppWidgetHost.java index a470e704f0c4..f7933d389a2c 100644 --- a/core/java/android/appwidget/AppWidgetHost.java +++ b/core/java/android/appwidget/AppWidgetHost.java @@ -408,12 +408,10 @@ public class AppWidgetHost { * @hide */ protected void onProvidersChanged(int userId) { - checkUserMatch(userId); // Does nothing } void updateAppWidgetView(int appWidgetId, RemoteViews views, int userId) { - checkUserMatch(userId); AppWidgetHostView v; synchronized (mViews) { v = mViews.get(appWidgetId); @@ -424,7 +422,6 @@ public class AppWidgetHost { } void viewDataChanged(int appWidgetId, int viewId, int userId) { - checkUserMatch(userId); AppWidgetHostView v; synchronized (mViews) { v = mViews.get(appWidgetId); @@ -434,16 +431,6 @@ public class AppWidgetHost { } } - // Ensure that the userId passed to us agrees with the one associated with this instance - // of AppWidgetHost. - // TODO: This should be removed in production code. - private void checkUserMatch(int userId) { - if (userId != mContext.getUserId()) { - throw new IllegalStateException( - "User ids don't match, userId=" + userId + ", mUserId=" + mContext.getUserId()); - } - } - /** * Clear the list of Views that have been created by this AppWidgetHost. */ |