mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
make sure default resourse patterns are loaded if corresponding tag is missing from xml (IDEA-154638)
This commit is contained in:
@@ -735,10 +735,10 @@ public class CompilerConfigurationImpl extends CompilerConfiguration implements
|
||||
}
|
||||
}
|
||||
|
||||
removeWildcardPatterns();
|
||||
node = parentNode.getChild(JpsJavaCompilerConfigurationSerializer.WILDCARD_RESOURCE_PATTERNS);
|
||||
if (node != null) {
|
||||
myWildcardPatternsInitialized = true;
|
||||
removeWildcardPatterns();
|
||||
for (Element element : node.getChildren(JpsJavaCompilerConfigurationSerializer.ENTRY)) {
|
||||
String pattern = element.getAttributeValue(JpsJavaCompilerConfigurationSerializer.NAME);
|
||||
if (!StringUtil.isEmpty(pattern)) {
|
||||
|
||||
Reference in New Issue
Block a user