fixed obsolete reference to Hello world applet

fixes https://github.com/frankmorgner/vsmartcard/issues/163
regression from 1caff4f497
This commit is contained in:
Frank Morgner
2020-04-25 02:19:29 +02:00
parent feeb732810
commit 920bc701c9
6 changed files with 3 additions and 8 deletions

View File

@@ -184,7 +184,6 @@ public class SettingsActivity extends AppCompatPreferenceActivity {
// guidelines.
bindPreferenceSummaryToValue(findPreference("emulator"));
bindPreferenceSummaryToValue(findPreference("activate_helloworld"));
bindPreferenceSummaryToValue(findPreference("activate_pivapplet"));
bindPreferenceSummaryToValue(findPreference("activate_openpgp"));
bindPreferenceSummaryToValue(findPreference("activate_oath"));

View File

@@ -81,7 +81,6 @@ public class EmulatorSingleton {
Integer.parseInt(SP.getString("port", Integer.toString(VICCEmulator.DEFAULT_PORT))));
} else {
emulator = new JCEmulator(context,
SP.getBoolean("activate_helloworld", false),
SP.getBoolean("activate_openpgp", false),
SP.getBoolean("activate_oath", false),
SP.getBoolean("activate_isoapplet", false),
@@ -132,4 +131,4 @@ public class EmulatorSingleton {
public static void deactivate() {
emulator.deactivate();
}
}
}

View File

@@ -23,7 +23,6 @@ public class JCEmulator implements Emulator {
public JCEmulator(
Context context,
boolean activate_helloworld,
boolean activate_openpgp,
boolean activate_oath,
boolean activate_isoapplet,
@@ -122,4 +121,4 @@ public class JCEmulator implements Emulator {
public void deactivate() {
simulator.reset();
}
}
}