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:
parent
051b74c883
commit
afcdfc7fd7
1 changed files with 2 additions and 2 deletions
|
@ -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...");
|
||||||
|
|
Loading…
Reference in a new issue