File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1313import java .nio .file .Paths ;
1414import java .util .ArrayList ;
1515import java .util .List ;
16+ import java .util .concurrent .CopyOnWriteArrayList ;
1617import java .util .stream .Collectors ;
1718import java .util .stream .Stream ;
1819
1920import org .apache .maven .plugin .AbstractMojo ;
2021import org .apache .maven .plugin .MojoExecutionException ;
2122import org .apache .maven .plugin .MojoFailureException ;
22- import org .apache .maven .plugin .logging .Log ;
2323import org .apache .maven .plugins .annotations .Parameter ;
2424
2525public abstract class AbstractFMT extends AbstractMojo {
@@ -62,7 +62,7 @@ public abstract class AbstractFMT extends AbstractMojo {
6262 @ Parameter (defaultValue = "google" , property = "style" )
6363 private String style ;
6464
65- private List <String > filesProcessed = new ArrayList < String >();
65+ private List <String > filesProcessed = new CopyOnWriteArrayList < >();
6666 private int nonComplyingFiles ;
6767
6868 /**
You can’t perform that action at this time.
0 commit comments