Remove any whitespace from fingerprint EditText input so that copy pasting is easier for users.
This commit is contained in:
parent
fdc70b0f9d
commit
360f365227
@ -282,6 +282,8 @@ public class ManageReposActivity extends ActionBarActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
String fp = fingerprintEditText.getText().toString();
|
String fp = fingerprintEditText.getText().toString();
|
||||||
|
// remove any whitespace from fingerprint
|
||||||
|
fp = fp.replaceAll("\\s", "");
|
||||||
|
|
||||||
switch (addRepoState) {
|
switch (addRepoState) {
|
||||||
case DOESNT_EXIST:
|
case DOESNT_EXIST:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user