Skip to content

Commit 4810c50

Browse files
committed
Split the sentence at a more reasonable place
1 parent fb97ff2 commit 4810c50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hotspot/share/classfile/classFileParser.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3295,8 +3295,8 @@ void ClassFileParser::parse_classfile_bootstrap_methods_attribute(const ClassFil
32953295
Array<u2>* const entries = // u2 data holding all the BSM attribute entries
32963296
MetadataFactory::new_array<u2>(_loader_data, attribute_tail_length / sizeof(u2), CHECK);
32973297

3298-
// Eagerly assign arrays so they will be deallocated with the constant
3299-
// pool if there is an error.
3298+
// Eagerly assign arrays so they will be deallocated with
3299+
// the constant pool if there is an error.
33003300
cp->set_bsm_attribute_offsets(offsets);
33013301
cp->set_bsm_attribute_entries(entries);
33023302

0 commit comments

Comments
 (0)