Skip to content

Commit

Permalink
* allow disabling of selective ELM commands
Browse files Browse the repository at this point in the history
  • Loading branch information
fr3ts0n committed Oct 24, 2015
1 parent 3a2e7ee commit 3fd7d89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/fr3ts0n/ecu/gui/androbd/SettingsActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ void setupElmCmdSelection()
MultiSelectListPreference pref =
(MultiSelectListPreference) findPreference(ELM_CMD_DISABLE);
ElmProt.CMD[] values = ElmProt.CMD.values();
HashSet<String> selections = new HashSet<>();
HashSet<String> selections = new HashSet<String>();
CharSequence[] titles = new CharSequence[values.length];
CharSequence[] keys = new CharSequence[values.length];
int i = 0;
Expand Down Expand Up @@ -193,7 +193,7 @@ void setupPidSelection()

// collect data items for selection
items = ObdProt.dataItems.getSvcDataItems(ObdProt.OBD_SVC_DATA);
HashSet<String> selections = new HashSet<>();
HashSet<String> selections = new HashSet<String>();
CharSequence[] titles = new CharSequence[items.size()];
CharSequence[] keys = new CharSequence[items.size()];
// loop through data items
Expand Down

0 comments on commit 3fd7d89

Please sign in to comment.