mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-12-17 21:44:20 +01:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user