Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mgronlun committed Aug 26, 2024
1 parent edbe721 commit cb10d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/jfr/support/jfrSymbolTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ traceid JfrSymbolTable::mark(uintptr_t hash, const char* str, bool leakp) {
traceid JfrSymbolTable::mark_hidden_klass_name(const Klass* k, bool leakp) {
assert(k != nullptr, "invariant");
assert(k->is_hidden(), "invariant");
const uintptr_t hash = k->name()->identity_hash();;
const uintptr_t hash = k->name()->identity_hash();
return mark(hash, k->external_name(), leakp);
}

Expand Down

0 comments on commit cb10d17

Please sign in to comment.