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

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2277826

Change-Id: Ie732c3c4020ee2eac35703cabea10658f1669ac4
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Michael Wright
2023-01-27 20:25:14 +00:00
committed by Automerger Merge Worker

View File

@@ -2260,7 +2260,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();
}