X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/4f2261e86f493a9c8954c02c52ddaa9a46490d20..591c0fe8a3744608575a6dcb1f6f4f9f818948d2:/src/main/java/org/asamk/signal/commands/VerifyCommand.java diff --git a/src/main/java/org/asamk/signal/commands/VerifyCommand.java b/src/main/java/org/asamk/signal/commands/VerifyCommand.java index 0f336325..b6ad100b 100644 --- a/src/main/java/org/asamk/signal/commands/VerifyCommand.java +++ b/src/main/java/org/asamk/signal/commands/VerifyCommand.java @@ -12,10 +12,8 @@ public class VerifyCommand implements LocalCommand { @Override public void attachToSubparser(final Subparser subparser) { - subparser.addArgument("verificationCode") - .help("The verification code you received via sms or voice call."); - subparser.addArgument("-p", "--pin") - .help("The registration lock PIN, that was set by the user (Optional)"); + subparser.addArgument("verificationCode").help("The verification code you received via sms or voice call."); + subparser.addArgument("-p", "--pin").help("The registration lock PIN, that was set by the user (Optional)"); } @Override @@ -30,7 +28,8 @@ public class VerifyCommand implements LocalCommand { m.verifyAccount(verificationCode, pin); return 0; } catch (LockedException e) { - System.err.println("Verification failed! This number is locked with a pin. Hours remaining until reset: " + (e.getTimeRemaining() / 1000 / 60 / 60)); + System.err.println("Verification failed! This number is locked with a pin. Hours remaining until reset: " + + (e.getTimeRemaining() / 1000 / 60 / 60)); System.err.println("Use '--pin PIN_CODE' to specify the registration lock PIN"); return 3; } catch (IOException e) {