From e85010fbc2754168d7e999f046feeae9e1a701ad Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Thu, 9 Aug 2018 18:23:38 +0200 Subject: [PATCH] Move annotation comment This confused the Android Studio code formatter. --- server/src/main/java/com/genymobile/scrcpy/Device.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/main/java/com/genymobile/scrcpy/Device.java b/server/src/main/java/com/genymobile/scrcpy/Device.java index b9b8bb71..124c84a4 100644 --- a/server/src/main/java/com/genymobile/scrcpy/Device.java +++ b/server/src/main/java/com/genymobile/scrcpy/Device.java @@ -77,7 +77,8 @@ public final class Device { } public Point getPhysicalPoint(Position position) { - @SuppressWarnings("checkstyle:HiddenField") // it hides the field on purpose, to read it with a lock + // it hides the field on purpose, to read it with a lock + @SuppressWarnings("checkstyle:HiddenField") ScreenInfo screenInfo = getScreenInfo(); // read with synchronization Size videoSize = screenInfo.getVideoSize(); Size clientVideoSize = position.getScreenSize();