< prev index next >

src/hotspot/share/services/diagnosticArgument.hpp

Print this page
rev 50556 : [mq]: jcmd-cleanups
rev 50557 : [mq]: 8204958-jcmd-cleanups-delta

@@ -70,13 +70,17 @@
   const bool        _is_mandatory;
   bool             _allow_multiple;
   GenDCmdArgument(const char* name, const char* description, const char* type,
                   const char* default_string, bool mandatory)
     : _next(NULL)
-    , _name(name), _description(description), _type(type)
-    , _default_string(default_string), _is_mandatory(mandatory)
-    , _is_set(false), _allow_multiple(false) {}
+    , _name(name)
+    , _description(description)
+    , _type(type)
+    , _default_string(default_string)
+    , _is_set(false)
+    , _is_mandatory(mandatory)
+    ,  _allow_multiple(false) {}
 
 public:
   const char* name() const { return _name; }
   const char* description() const { return _description; }
   const char* type() const { return _type; }
< prev index next >