Remove ADISPLAY_ID_ definitions
These were replaced by LogicalDisplayId:: equivalents.
Bug: 339106983
Test: presubmit
Change-Id: Id4ed040c8e3a0d7fdfebbedfb1a7cafba592235d
diff --git a/libs/ui/include/ui/LogicalDisplayId.h b/libs/ui/include/ui/LogicalDisplayId.h
index d745758..fd84b12 100644
--- a/libs/ui/include/ui/LogicalDisplayId.h
+++ b/libs/ui/include/ui/LogicalDisplayId.h
@@ -43,13 +43,6 @@
constexpr inline LogicalDisplayId LogicalDisplayId::INVALID{-1};
constexpr inline LogicalDisplayId LogicalDisplayId::DEFAULT{0};
-/**
- * Deprecated! Use LogicalDisplayId::INVALID / LogicalDisplayId::DEFAULT instead.
- * TODO(b/339106983): remove these.
- */
-[[deprecated]] constexpr LogicalDisplayId ADISPLAY_ID_NONE{-1};
-[[deprecated]] constexpr LogicalDisplayId ADISPLAY_ID_DEFAULT{0};
-
inline std::ostream& operator<<(std::ostream& stream, LogicalDisplayId displayId) {
return stream << displayId.val();
}