mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Gradle: delegate setting serialization typo fix
This commit is contained in:
@@ -220,7 +220,7 @@ public class GradleProjectSettings extends ExternalProjectSettings {
|
||||
@Override
|
||||
public ThreeState fromString(@NotNull String value) {
|
||||
if (StringUtil.isEmpty(value)) return ThreeState.UNSURE;
|
||||
return ThreeState.fromBoolean(Boolean.getBoolean(value));
|
||||
return ThreeState.fromBoolean(Boolean.valueOf(value));
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
||||
Reference in New Issue
Block a user