Fix checkstyle violation

Checkstyle reported this error:

    [ant:checkstyle] [ERROR] AudioCapture.java:89:145: '+' should be on
    a new line. [OperatorWrap]
This commit is contained in:
Romain Vimont 2023-04-09 20:01:58 +02:00
parent 051b74c883
commit afcdfc7fd7

View file

@ -86,8 +86,8 @@ public final class AudioCapture {
} catch (UnsupportedOperationException e) { } catch (UnsupportedOperationException e) {
if (attempts == 0) { if (attempts == 0) {
Ln.e("Failed to start audio capture"); 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 " + Ln.e("On Android 11, audio capture must be started in the foreground, make sure that the device is unlocked when starting "
"scrcpy."); + "scrcpy.");
throw new AudioCaptureForegroundException(); throw new AudioCaptureForegroundException();
} else { } else {
Ln.d("Failed to start audio capture, retrying..."); Ln.d("Failed to start audio capture, retrying...");