Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8294000: Filler array klass should be in jdk/vm/internal, not in java…
…/vm/internal

Reviewed-by: shade, dholmes
  • Loading branch information
Thomas Schatzl committed Sep 21, 2022
1 parent 379f309 commit 8ecdaa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/memory/universe.cpp
Expand Up @@ -328,7 +328,7 @@ void Universe::genesis(TRAPS) {
// Initialization of the fillerArrayKlass must come before regular
// int-TypeArrayKlass so that the int-Array mirror points to the
// int-TypeArrayKlass.
_fillerArrayKlassObj = TypeArrayKlass::create_klass(T_INT, "Ljava/internal/vm/FillerArray;", CHECK);
_fillerArrayKlassObj = TypeArrayKlass::create_klass(T_INT, "Ljdk/internal/vm/FillerArray;", CHECK);
for (int i = T_BOOLEAN; i < T_LONG+1; i++) {
_typeArrayKlassObjs[i] = TypeArrayKlass::create_klass((BasicType)i, CHECK);
}
Expand Down

0 comments on commit 8ecdaa6

Please sign in to comment.