Commit e3484d63 by samrobinson Committed by christosts

Remove space in exception message.

This space was added by mistake in a prior CL of mine.

PiperOrigin-RevId: 510157363
parent 77ea31e0
...@@ -264,7 +264,7 @@ public final class ExportException extends Exception { ...@@ -264,7 +264,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);
} }
......
...@@ -268,7 +268,7 @@ public final class TransformationException extends Exception { ...@@ -268,7 +268,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);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment