From 495b796816406d5a7e855f5f3cb8cd3f073c91d2 Mon Sep 17 00:00:00 2001 From: Remynfv <15258372+Remynfv@users.noreply.github.com> Date: Sun, 11 Dec 2022 19:40:58 -0800 Subject: [PATCH] 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.`` --- .../com/velocitypowered/proxy/config/VelocityConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/config/VelocityConfiguration.java b/proxy/src/main/java/com/velocitypowered/proxy/config/VelocityConfiguration.java index b3f566cf9..c84aa8007 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/config/VelocityConfiguration.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/config/VelocityConfiguration.java @@ -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."); } } }