mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
8060256: The loop in Arguments::parse() can be enhanced
Add continue statement for matching cases. Reviewed-by: dholmes, bdelsart
This commit is contained in:
parent
b79e1193cd
commit
cc264643ac
4 changed files with 70 additions and 3 deletions
|
@ -34,7 +34,10 @@ public:
|
|||
static inline bool check_gc_consistency_user();
|
||||
static inline bool check_gc_consistency_ergo();
|
||||
static inline bool check_vm_args_consistency();
|
||||
static void process_options(const JavaVMInitArgs* args) {}
|
||||
// The argument processing extension. Returns true if there is
|
||||
// no additional parsing needed in Arguments::parse() for the option.
|
||||
// Otherwise returns false.
|
||||
static inline bool process_options(const JavaVMOption *option) { return false; }
|
||||
};
|
||||
|
||||
void ArgumentsExt::select_gc_ergonomically() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue