(String path, int direction, boolean fromResource)
| 22 | public class UserKeys { |
| 23 | |
| 24 | public UserKeys(String path, int direction, boolean fromResource) { |
| 25 | UserKeyExec uexec = UserKeyExec.getInstance(); |
| 26 | |
| 27 | if (direction == 0) { |
| 28 | uexec.keyScheme = loadFromFile(path, fromResource); |
| 29 | rmsUpdate(uexec.keyScheme); |
| 30 | } else { |
| 31 | exportData(uexec.keyScheme, path); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | public static KeyScheme loadFromStorage() { |
| 36 | final KeyScheme keyScheme = new KeyScheme(); |
nothing calls this directly
no test coverage detected