初期化漏れ修正

This commit is contained in:
ろむねこ 2024-06-13 16:44:58 +09:00
parent 0aa9463c0c
commit dadfd2ee74
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -15,6 +15,7 @@ public class FeatureFlagItemModel {
public FeatureFlagItemModel(String key, boolean defaultValue, boolean isOverrideAllowed) {
this.key = key;
this.value = defaultValue;
this.defaultValue = defaultValue;
this.isOverrideAllowed = isOverrideAllowed;
}