Fix inconsistent quotes

The encoder name started with a simple quote but ended with a
double quote. Use a single quote for both.
This commit is contained in:
Romain Vimont 2023-02-19 16:08:08 +01:00
parent d5dff239c8
commit ebecbe6bc6

View file

@ -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;
}