Pearl1594 commented on code in PR #11415:
URL: https://github.com/apache/cloudstack/pull/11415#discussion_r2293875348


##########
framework/config/src/main/java/org/apache/cloudstack/framework/config/ConfigKey.java:
##########
@@ -229,6 +229,10 @@ public ConfigKey(String category, Class<T> type, String 
name, String defaultValu
         this(type, name, category, defaultValue, description, isDynamic, 
Scope.Global, null);
     }
 
+    public ConfigKey(String category, Class<T> type, String name, String 
defaultValue, String description, Scope scope, boolean isDynamic) {
+        this(type, name, category, defaultValue, description, isDynamic, 
scope, null);
+    }

Review Comment:
   I mean I could use another constructor, but it felt easier to do this to in 
order to pass lesser parameters. But I get your point.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to