From 01f0640dd5c85fc396d2f1d56a4d65d1f8b57bda Mon Sep 17 00:00:00 2001 From: Emmanuel Garcia Date: Tue, 23 Jun 2020 21:03:06 -0700 Subject: [PATCH] Fix format --- .../android/io/flutter/embedding/android/FlutterView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/platform/android/io/flutter/embedding/android/FlutterView.java b/shell/platform/android/io/flutter/embedding/android/FlutterView.java index 2fd22da61d4e1..7da7a5f06f0be 100644 --- a/shell/platform/android/io/flutter/embedding/android/FlutterView.java +++ b/shell/platform/android/io/flutter/embedding/android/FlutterView.java @@ -171,7 +171,7 @@ public FlutterView(@NonNull Context context, @NonNull RenderMode renderMode) { renderSurface = flutterTextureView; } else { throw new IllegalArgumentException( - String.format("RenderMode not supported with this constructor: ", renderMode)); + String.format("RenderMode not supported with this constructor: %s", renderMode)); } init(); @@ -265,7 +265,7 @@ public FlutterView( renderSurface = flutterTextureView; } else { throw new IllegalArgumentException( - String.format("RenderMode not supported with this constructor: ", renderMode)); + String.format("RenderMode not supported with this constructor: %s", renderMode)); } init();