< prev index next >

src/share/vm/runtime/arguments_ext.hpp

Print this page
rev 7103 : 8073944: Simplify ArgumentsExt and remove unneeded functionallity
Reviewed-by:

@@ -28,24 +28,14 @@
 #include "memory/allocation.hpp"
 #include "runtime/arguments.hpp"
 
 class ArgumentsExt: AllStatic {
 public:
-  static inline void select_gc_ergonomically();
   static inline void set_gc_specific_flags();
-  static inline bool check_gc_consistency_ergo();
   static        void process_options(const JavaVMInitArgs* args) {}
 };
 
-void ArgumentsExt::select_gc_ergonomically() {
-  Arguments::select_gc_ergonomically();
-}
-
 void ArgumentsExt::set_gc_specific_flags() {
   Arguments::set_gc_specific_flags();
 }
 
-bool ArgumentsExt::check_gc_consistency_ergo() {
-  return Arguments::check_gc_consistency_ergo();
-}
-
 #endif // SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP
< prev index next >