diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9f6aff220c..2b99878532 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,6 +28,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com)
- #2921 - Remove ClassicUI dialogs where Touch dialogs already exist
- #2920 - Remove ClassicUI Audio component
- #2918 - Remove ClassicUI ShareThis
+- #2919 - Remove old GenericList implementation files
## 5.3.2 - 2022-06-22
diff --git a/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/headlibs.jsp b/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/headlibs.jsp
deleted file mode 100644
index cf6d72da32..0000000000
--- a/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/headlibs.jsp
+++ /dev/null
@@ -1,23 +0,0 @@
-<%--
- #%L
- ACS AEM Commons Package
- %%
- Copyright (C) 2013 Adobe
- %%
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- #L%
- --%>
-<%@include file="/libs/foundation/global.jsp" %><%
-%><%
- currentDesign.writeCssIncludes(pageContext); %>
-
\ No newline at end of file
diff --git a/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/.content.xml b/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/.content.xml
deleted file mode 100644
index eb43c1453e..0000000000
--- a/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/.content.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
diff --git a/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/dialog.xml b/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/dialog.xml
deleted file mode 100644
index 170a73ca61..0000000000
--- a/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/dialog.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/item.jsp b/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/item.jsp
deleted file mode 100644
index 763e60b9ab..0000000000
--- a/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/item/item.jsp
+++ /dev/null
@@ -1,34 +0,0 @@
-<%--
- #%L
- ACS AEM Commons Package
- %%
- Copyright (C) 2013 Adobe
- %%
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- #L%
- --%>
-<%@include file="/libs/foundation/global.jsp"%>
-
-
- <%
-String title = properties.get("jcr:title", "");
-String value = properties.get("value", "");
-
-if (title.equals("")) {
- %>Please enter a title
- <%
-} else { %>
-Title: <%=xssAPI.encodeForHTML(title)%>
-Value: <%=xssAPI.encodeForHTML(value)%>
-<% } %>
-