8367860: Remove unused NMethodToOopClosure::fix_relocations

Reviewed-by: fandreuzzi, tschatzl
This commit is contained in:
Albert Mingkun Yang 2025-09-17 13:58:06 +00:00
parent 1ba841410b
commit 91afdaff80

View File

@ -252,7 +252,6 @@ class NMethodToOopClosure : public NMethodClosure {
NMethodToOopClosure(OopClosure* cl, bool fix_relocations) : _cl(cl), _fix_relocations(fix_relocations) {}
void do_nmethod(nmethod* nm) override;
bool fix_relocations() const { return _fix_relocations; }
const static bool FixRelocations = true;
};