From ff05d9795322fee6def559bd6776de42b96c27dc Mon Sep 17 00:00:00 2001 From: Marc Chevalier Date: Tue, 18 Feb 2025 09:25:24 +0000 Subject: [PATCH] 8349180: Remove redundant initialization in ciField constructor Reviewed-by: chagedorn --- src/hotspot/share/ci/ciField.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/hotspot/share/ci/ciField.cpp b/src/hotspot/share/ci/ciField.cpp index 44d7fa37960..cbe0cadbc93 100644 --- a/src/hotspot/share/ci/ciField.cpp +++ b/src/hotspot/share/ci/ciField.cpp @@ -102,8 +102,6 @@ ciField::ciField(ciInstanceKlass* klass, int index, Bytecodes::Code bc) : _type = ciType::make(field_type); } - _name = (ciSymbol*)ciEnv::current(THREAD)->get_symbol(name); - // Get the field's declared holder. // // Note: we actually create a ciInstanceKlass for this klass,