Add note about preferences for old API levels
Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/commit/aa2ced87 Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/aa2ced87 Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/aa2ced87 Branch: refs/heads/master Commit: aa2ced877d6c1c43c41b91de70622d336e70df8d Parents: 2b1f8ea Author: Ian Dunlop <[email protected]> Authored: Wed Jul 27 12:50:22 2016 +0100 Committer: Ian Dunlop <[email protected]> Committed: Wed Jul 27 12:50:22 2016 +0100 ---------------------------------------------------------------------- .../org/apache/taverna/mobile/activities/SettingsActivity.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/aa2ced87/app/src/main/java/org/apache/taverna/mobile/activities/SettingsActivity.java ---------------------------------------------------------------------- diff --git a/app/src/main/java/org/apache/taverna/mobile/activities/SettingsActivity.java b/app/src/main/java/org/apache/taverna/mobile/activities/SettingsActivity.java index 1ac823c..1aca5ae 100644 --- a/app/src/main/java/org/apache/taverna/mobile/activities/SettingsActivity.java +++ b/app/src/main/java/org/apache/taverna/mobile/activities/SettingsActivity.java @@ -173,8 +173,11 @@ public class SettingsActivity extends PreferenceActivity { * Shows the simplified settings UI if the device configuration if the * device configuration dictates that a simplified, single-pane UI should be * shown. + * Note that this is only valid for older Honeycomb and below API levels which + * the app does not target. */ private void setupSimplePreferencesScreen() { + //TODO remove this since the app does not need to support old API levels if (!isSimplePreferences(this)) { return; }
