Skip to content

Commit

Permalink
Rename WrappedArrayList to ToArrayList, re #7
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Jan 8, 2025
1 parent 7f1b89b commit 52383a0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.libj.lang.Strings;
import org.libj.lang.WrappedArrayList;
import org.libj.lang.ToArrayList;

/**
* Maven MOJO for {@link Templates}.
Expand Down Expand Up @@ -114,7 +114,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
int size = skips.size();
final ArrayList<List<String>> skips;
if (size == 0) {
skips = WrappedArrayList.EMPTY_LIST;
skips = ToArrayList.EMPTY_LIST;
}
else {
skips = new ArrayList<>(size);
Expand All @@ -126,7 +126,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
size = templates.size();
final ArrayList<Raster> ins;
if (size == 0) {
ins = WrappedArrayList.EMPTY_LIST;
ins = ToArrayList.EMPTY_LIST;
}
else {
ins = new ArrayList<>(size);
Expand Down

0 comments on commit 52383a0

Please sign in to comment.