From ebecbe6bc66f6d2c5d7fb18fe37641fdacb0a8df Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sun, 19 Feb 2023 16:08:08 +0100 Subject: [PATCH] Fix inconsistent quotes The encoder name started with a simple quote but ended with a double quote. Use a single quote for both. --- .../java/com/genymobile/scrcpy/InvalidEncoderException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main/java/com/genymobile/scrcpy/InvalidEncoderException.java b/server/src/main/java/com/genymobile/scrcpy/InvalidEncoderException.java index 1efd2989..b38e29b1 100644 --- a/server/src/main/java/com/genymobile/scrcpy/InvalidEncoderException.java +++ b/server/src/main/java/com/genymobile/scrcpy/InvalidEncoderException.java @@ -8,7 +8,7 @@ public class InvalidEncoderException extends RuntimeException { private final MediaCodecInfo[] availableEncoders; public InvalidEncoderException(String name, MediaCodecInfo[] availableEncoders) { - super("There is no encoder having name '" + name + '"'); + super("There is no encoder having name '" + name + "'"); this.name = name; this.availableEncoders = availableEncoders; }