Disable checkstyle line length warning

Checkstyle reports a warning because the line containing a long URL is
more than 150 characters. But we can't split the URL, so disable the
warning.
This commit is contained in:
Romain Vimont 2025-02-22 12:22:45 +01:00
parent fd8bef68b7
commit d892a9aac5

View File

@ -12,6 +12,7 @@ import java.lang.reflect.Method;
public final class WindowManager {
@SuppressWarnings("checkstyle:LineLength")
// <https://android.googlesource.com/platform/frameworks/base.git/+/2103ff441c66772c80c8560e322dcd9a45be7dcd/core/java/android/view/WindowManager.java#692>
public static final int DISPLAY_IME_POLICY_LOCAL = 0;
public static final int DISPLAY_IME_POLICY_FALLBACK_DISPLAY = 1;