matthiasblaesing commented on PR #6974: URL: https://github.com/apache/netbeans/pull/6974#issuecomment-1899016038
If I'm not missing something obvious, this will enable the multi source handling by default. Property is set to true: ```properties SETTING_EnableMultiSourceRoot=true ``` that value is compared to the string `"true"`, which yields the boolean `true`. That is then inverted yielding boolean `false`. ```java public static boolean DISABLE_MULTI_SOURCE_ROOT = !"true".equals(Bundle.SETTING_EnableMultiSourceRoot()); ``` So effectively nothing changed. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
