3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 06:30:16 +02:00

Fix grammar in obscure error message (#880)

The title really says it all. Change ``The forwarding-secret-file does not exists.`` to ``The forwarding-secret-file does not exist.``
Dieser Commit ist enthalten in:
Remynfv 2022-12-11 19:40:58 -08:00 committet von GitHub
Ursprung 8deb0ff70d
Commit 495b796816
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -496,7 +496,7 @@ public class VelocityConfiguration implements ProxyConfig {
throw new RuntimeException("The file " + forwardSecretFile + " is not a valid file or it is a directory.");
}
} else {
throw new RuntimeException("The forwarding-secret-file does not exists.");
throw new RuntimeException("The forwarding-secret-file does not exist.");
}
}
}