[FIX] attributes

This commit is contained in:
RatzzFatzz
2020-04-14 21:01:34 +02:00
parent 0d74b00487
commit 092103a93c
2 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ public class AttributeUpdaterKernel {
/*
* Creating new ArrayList, because the method removes elements from the list by reference
*/
boolean fileHasChanged = new ConfigProcessor(config).processConfig(file, new ArrayList(allValidPaths));
boolean fileHasChanged = new ConfigProcessor(config).processConfig(file, new ArrayList<>(attributes));
if(fileHasChanged){
break;
}