Making some methods accessible

Bug: 63996463
Change-Id: I3cd2e21b8aa6744fc8003a131178ce1671e024dd
This commit is contained in:
Sunny Goyal
2017-08-07 07:42:45 -07:00
parent f2b83d0e84
commit 0b754e564b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -780,7 +780,7 @@ public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
return mCellWidth;
}
int getCellHeight() {
public int getCellHeight() {
return mCellHeight;
}
@@ -101,7 +101,7 @@ public class ShortcutAndWidgetContainer extends ViewGroup {
mInvertIfRtl = invert;
}
int getCellContentHeight() {
public int getCellContentHeight() {
return Math.min(getMeasuredHeight(),
mLauncher.getDeviceProfile().getCellHeight(mContainerType));
}