File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 13
13
import java .nio .file .Paths ;
14
14
import java .util .ArrayList ;
15
15
import java .util .List ;
16
+ import java .util .concurrent .CopyOnWriteArrayList ;
16
17
import java .util .stream .Collectors ;
17
18
import java .util .stream .Stream ;
18
19
19
20
import org .apache .maven .plugin .AbstractMojo ;
20
21
import org .apache .maven .plugin .MojoExecutionException ;
21
22
import org .apache .maven .plugin .MojoFailureException ;
22
- import org .apache .maven .plugin .logging .Log ;
23
23
import org .apache .maven .plugins .annotations .Parameter ;
24
24
25
25
public abstract class AbstractFMT extends AbstractMojo {
@@ -62,7 +62,7 @@ public abstract class AbstractFMT extends AbstractMojo {
62
62
@ Parameter (defaultValue = "google" , property = "style" )
63
63
private String style ;
64
64
65
- private List <String > filesProcessed = new ArrayList < String >();
65
+ private List <String > filesProcessed = new CopyOnWriteArrayList < >();
66
66
private int nonComplyingFiles ;
67
67
68
68
/**
You can’t perform that action at this time.
0 commit comments