Fix build.

Commented out the offending lines and add a RuntimeException to
fix the build.

Change-Id: Ide2a7897d639edb1cd28401566558a90235c250b
This commit is contained in:
Wink Saville
2011-01-13 21:05:24 -08:00
parent a7f9d6622d
commit 181414a48c

View File

@@ -73,7 +73,8 @@ public class ForegroundDispatch extends Activity {
@Override
public void onResume() {
super.onResume();
mAdapter.enableForegroundDispatch(this, mPendingIntent, mFilters);
//mAdapter.enableForegroundDispatch(this, mPendingIntent, mFilters);
throw new RuntimeException("onResume not implemented to fix build");
}
@Override
@@ -85,6 +86,7 @@ public class ForegroundDispatch extends Activity {
@Override
public void onPause() {
super.onPause();
mAdapter.disableForegroundDispatch(this);
//mAdapter.disableForegroundDispatch(this);
throw new RuntimeException("onPause not implemented to fix build");
}
}