src/hotspot/share/prims/jvmtiTagMap.cpp
changeset 58177 4932dce35882
parent 58015 dd84de796f2c
child 58679 9c3209ff7550
child 58722 cba8afa5cfed
equal deleted inserted replaced
58176:470af058bd5f 58177:4932dce35882
   103     assert(tag != 0, "can't be zero");
   103     assert(tag != 0, "can't be zero");
   104     _tag = tag;
   104     _tag = tag;
   105   }
   105   }
   106 
   106 
   107   inline bool equals(oop object) {
   107   inline bool equals(oop object) {
   108     return oopDesc::equals(object, object_peek());
   108     return object == object_peek();
   109   }
   109   }
   110 
   110 
   111   inline JvmtiTagHashmapEntry* next() const        { return _next; }
   111   inline JvmtiTagHashmapEntry* next() const        { return _next; }
   112   inline void set_next(JvmtiTagHashmapEntry* next) { _next = next; }
   112   inline void set_next(JvmtiTagHashmapEntry* next) { _next = next; }
   113 };
   113 };