Skip to content

Commit 4db6ba1

Browse files
committed
8230563: Remove arguments_ext.cpp
Reviewed-by: dholmes, coleenp
1 parent 57514a0 commit 4db6ba1

File tree

2 files changed

+0
-37
lines changed

2 files changed

+0
-37
lines changed

src/hotspot/share/runtime/arguments.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -628,14 +628,7 @@ static bool version_less_than(JDK_Version v, JDK_Version other) {
628628
}
629629
}
630630

631-
extern bool lookup_special_flag_ext(const char *flag_name, SpecialFlag& flag);
632-
633631
static bool lookup_special_flag(const char *flag_name, SpecialFlag& flag) {
634-
// Allow extensions to have priority
635-
if (lookup_special_flag_ext(flag_name, flag)) {
636-
return true;
637-
}
638-
639632
for (size_t i = 0; special_jvm_flags[i].name != NULL; i++) {
640633
if ((strcmp(special_jvm_flags[i].name, flag_name) == 0)) {
641634
flag = special_jvm_flags[i];

src/hotspot/share/runtime/arguments_ext.cpp

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)