src/hotspot/share/utilities/growableArray.hpp
changeset 58177 4932dce35882
parent 55307 ed12027517c0
child 58679 9c3209ff7550
--- a/src/hotspot/share/utilities/growableArray.hpp	Tue Sep 17 09:51:02 2019 +0200
+++ b/src/hotspot/share/utilities/growableArray.hpp	Tue Sep 17 09:51:02 2019 +0200
@@ -218,15 +218,6 @@
 
   void print();
 
-  inline static bool safe_equals(oop obj1, oop obj2) {
-    return oopDesc::equals(obj1, obj2);
-  }
-
-  template <class X>
-  inline static bool safe_equals(X i1, X i2) {
-    return i1 == i2;
-  }
-
   int append(const E& elem) {
     check_nesting();
     if (_len == _max) grow(_len);
@@ -311,7 +302,7 @@
 
   bool contains(const E& elem) const {
     for (int i = 0; i < _len; i++) {
-      if (safe_equals(_data[i], elem)) return true;
+      if (_data[i] == elem) return true;
     }
     return false;
   }