From afcdfc7fd7440782a9924cd8ccb8a40933b4ba90 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sun, 9 Apr 2023 20:01:58 +0200 Subject: [PATCH] Fix checkstyle violation Checkstyle reported this error: [ant:checkstyle] [ERROR] AudioCapture.java:89:145: '+' should be on a new line. [OperatorWrap] --- server/src/main/java/com/genymobile/scrcpy/AudioCapture.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/main/java/com/genymobile/scrcpy/AudioCapture.java b/server/src/main/java/com/genymobile/scrcpy/AudioCapture.java index c940db16..dbb38dd2 100644 --- a/server/src/main/java/com/genymobile/scrcpy/AudioCapture.java +++ b/server/src/main/java/com/genymobile/scrcpy/AudioCapture.java @@ -86,8 +86,8 @@ public final class AudioCapture { } catch (UnsupportedOperationException e) { if (attempts == 0) { Ln.e("Failed to start audio capture"); - Ln.e("On Android 11, audio capture must be started in the foreground, make sure that the device is unlocked when starting " + - "scrcpy."); + Ln.e("On Android 11, audio capture must be started in the foreground, make sure that the device is unlocked when starting " + + "scrcpy."); throw new AudioCaptureForegroundException(); } else { Ln.d("Failed to start audio capture, retrying...");