Fix Lint warnings

This commit is contained in:
Cameron Gutman
2017-09-09 14:12:54 -07:00
parent 46a998c113
commit b2bd7257e1
34 changed files with 33 additions and 89 deletions

View File

@@ -3,6 +3,6 @@ package com.limelight.ui;
import android.widget.AbsListView;
public interface AdapterFragmentCallbacks {
public int getAdapterFragmentLayoutId();
public void receiveAbsListView(AbsListView gridView);
int getAdapterFragmentLayoutId();
void receiveAbsListView(AbsListView gridView);
}

View File

@@ -1,5 +1,5 @@
package com.limelight.ui;
public interface GameGestures {
public void showKeyboard();
void showKeyboard();
}