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:
parent
d5dff239c8
commit
ebecbe6bc6
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ public class InvalidEncoderException extends RuntimeException {
|
||||||
private final MediaCodecInfo[] availableEncoders;
|
private final MediaCodecInfo[] availableEncoders;
|
||||||
|
|
||||||
public InvalidEncoderException(String name, 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.name = name;
|
||||||
this.availableEncoders = availableEncoders;
|
this.availableEncoders = availableEncoders;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue