mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Use var instead of explicit types
This commit is contained in:
parent
03c30519b1
commit
de273586b4
77 changed files with 850 additions and 1017 deletions
|
@ -23,7 +23,7 @@ public class RegisterCommand implements RegistrationCommand {
|
|||
@Override
|
||||
public int handleCommand(final Namespace ns, final RegistrationManager m) {
|
||||
final boolean voiceVerification = ns.getBoolean("voice");
|
||||
final String captcha = ns.getString("captcha");
|
||||
final var captcha = ns.getString("captcha");
|
||||
|
||||
try {
|
||||
m.register(voiceVerification, captcha);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue