TOBAGO-1633: TS refactoring - cleanup
diff --git a/tobago-theme/tobago-theme-standard/src/main/npm/ts/tobago-utils.ts b/tobago-theme/tobago-theme-standard/src/main/npm/ts/tobago-utils.ts
index 5ed2e47..6b3bd58 100644
--- a/tobago-theme/tobago-theme-standard/src/main/npm/ts/tobago-utils.ts
+++ b/tobago-theme/tobago-theme-standard/src/main/npm/ts/tobago-utils.ts
@@ -125,27 +125,6 @@
         : elements.find(selector).add(elements.filter(selector));
   };
 
-  static findSubComponent(element, subId) {
-    return jQuery(Tobago4Utils.getSubComponentId(element.attr('id'), subId));
-  };
-
-  static getSubComponentId(id, subId) {
-    if (id != null) {
-      return "#" + id.replace(/:/g, "\\:") + "\\:\\:" + subId;
-    } else {
-      return null;
-    }
-  };
-
-  /** @deprecated */
-  static findSuperComponent(element) {
-    return jQuery(Tobago4Utils.getSuperComponentId(element.attr('id')));
-  };
-
-  static getSuperComponentId(id) {
-    return "#" + id.substring(0, id.lastIndexOf("::")).replace(/:/g, "\\:");
-  };
-
   /**
    * "a:b" -> "a"
    * "a:b:c" -> "a:b"