Fix build
Change-Id: I3e1708a9e41155b9b00e0365e4392ae66202fdbb
This commit is contained in:
@@ -61,9 +61,6 @@ final class CascadingMenuPopup extends MenuPopup implements MenuPresenter, OnKey
|
||||
*/
|
||||
private static final int SUBMENU_TIMEOUT_MS = 200;
|
||||
|
||||
/** List of menus that were added before this popup was shown. */
|
||||
private final LinkedList<MenuBuilder> mPendingMenus = new LinkedList<MenuBuilder>;
|
||||
|
||||
private final Context mContext;
|
||||
private final int mMenuMaxWidth;
|
||||
private final int mPopupStyleAttr;
|
||||
@@ -71,6 +68,9 @@ final class CascadingMenuPopup extends MenuPopup implements MenuPresenter, OnKey
|
||||
private final boolean mOverflowOnly;
|
||||
private final Handler mSubMenuHoverHandler;
|
||||
|
||||
/** List of menus that were added before this popup was shown. */
|
||||
private final List<MenuBuilder> mPendingMenus = new LinkedList<>();
|
||||
|
||||
/**
|
||||
* List of open menus. The first item is the root menu and each
|
||||
* subsequent item is a direct submenu of the previous item.
|
||||
|
||||
Reference in New Issue
Block a user