summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2015-03-24 23:34:27 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-03-24 23:34:27 +0000
commita6b00b3223b6131a54ab1315e31c7409ef7e2342 (patch)
tree22df4614211f3af477635e70e5c776ccc1c7d923
parente7084159de99947180729fae7f2d1328d4f4f822 (diff)
parentd0930655e5670bb40ec70523c1c76ff86fab2538 (diff)
downloadandroid_packages_apps_Trebuchet-a6b00b3223b6131a54ab1315e31c7409ef7e2342.tar.gz
android_packages_apps_Trebuchet-a6b00b3223b6131a54ab1315e31c7409ef7e2342.tar.bz2
android_packages_apps_Trebuchet-a6b00b3223b6131a54ab1315e31c7409ef7e2342.zip
Merge "Ensure that we are not using the new View constructor." into ub-launcher3-burnaby
-rw-r--r--src/com/android/launcher3/AppsContainerView.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/com/android/launcher3/AppsContainerView.java b/src/com/android/launcher3/AppsContainerView.java
index e7b6628cc..06fe93c1f 100644
--- a/src/com/android/launcher3/AppsContainerView.java
+++ b/src/com/android/launcher3/AppsContainerView.java
@@ -72,11 +72,7 @@ public class AppsContainerView extends FrameLayout implements DragSource, Insett
}
public AppsContainerView(Context context, AttributeSet attrs, int defStyleAttr) {
- this(context, attrs, defStyleAttr, 0);
- }
-
- public AppsContainerView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
- super(context, attrs, defStyleAttr, defStyleRes);
+ super(context, attrs, defStyleAttr);
LauncherAppState app = LauncherAppState.getInstance();
DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Resources res = context.getResources();