mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Remove space in exception message.
This space was added by mistake in a prior CL of mine. PiperOrigin-RevId: 510157363
This commit is contained in:
parent
aa7abd5518
commit
9ca1122bed
2 changed files with 2 additions and 2 deletions
|
|
@ -262,7 +262,7 @@ public final class ExportException extends Exception {
|
||||||
*/
|
*/
|
||||||
public static ExportException createForAudioProcessing(Throwable cause, AudioFormat audioFormat) {
|
public static ExportException createForAudioProcessing(Throwable cause, AudioFormat audioFormat) {
|
||||||
return new ExportException(
|
return new ExportException(
|
||||||
"Audio processing error, audio_format = " + audioFormat,
|
"Audio processing error, audio_format=" + audioFormat,
|
||||||
cause,
|
cause,
|
||||||
ERROR_CODE_AUDIO_PROCESSING_FAILED);
|
ERROR_CODE_AUDIO_PROCESSING_FAILED);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -266,7 +266,7 @@ public final class TransformationException extends Exception {
|
||||||
public static TransformationException createForAudioProcessing(
|
public static TransformationException createForAudioProcessing(
|
||||||
Throwable cause, AudioFormat audioFormat) {
|
Throwable cause, AudioFormat audioFormat) {
|
||||||
return new TransformationException(
|
return new TransformationException(
|
||||||
"Audio processing error, audio_format = " + audioFormat,
|
"Audio processing error, audio_format=" + audioFormat,
|
||||||
cause,
|
cause,
|
||||||
ERROR_CODE_AUDIO_PROCESSING_FAILED);
|
ERROR_CODE_AUDIO_PROCESSING_FAILED);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue