Merge "Don't warn for displays with no input device matching."

This commit is contained in:
Michael Wright
2023-01-26 16:18:11 +00:00
committed by Gerrit Code Review

View File

@@ -2231,7 +2231,9 @@ public final class DisplayManagerService extends SystemService {
}
// fallthrough
default:
Slog.w(TAG, "Display " + info + " does not support input device matching.");
if (DEBUG) {
Slog.w(TAG, "Display " + info + " does not support input device matching.");
}
}
return Optional.empty();
}