No prompt for reconciling pref

This commit is contained in:
aboyko
2023-08-28 09:54:10 -04:00
parent ac5e2f59e0
commit e574eb34e1
7 changed files with 4 additions and 188 deletions

View File

@@ -156,7 +156,7 @@ public class BootJavaConfig implements InitializingBean {
public boolean isJavaSourceReconcileEnabled() {
Boolean enabled = getRawSettings().getBoolean("boot-java", "validation", "java", "reconcilers");
return enabled == null ? false : enabled.booleanValue();
return enabled == null ? true : enabled.booleanValue();
}
public String getSpringIOApiUrl() {