blob: 6a23ed5def65748f901351444be8f1bf3bf35cd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package cgeo.geocaching.compatibility;
import android.app.Activity;
/**
* implement level 11 API using older methods
*/
public class AndroidLevel11Emulation implements AndroidLevel11Interface {
@Override
public void invalidateOptionsMenu(final Activity activity) {
// do nothing
}
}
|