Skip to content

Commit

Permalink
#2648: Collection instead of ArrayList
Browse files Browse the repository at this point in the history
  • Loading branch information
levBagryansky committed Jan 10, 2024
1 parent 5fcf08d commit 2009ce9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public BinarizeParse(
* @throws IOException if any issue with IO.
*/
public Collection<Buildable> exec(final Collection<ForeignTojo> tojos) throws IOException {
final ArrayList<Buildable> res = new ArrayList<>(0);
final Collection<Buildable> res = new ArrayList<>(0);
new File(this.targetDir.toPath().resolve("Lib/").toString()).mkdirs();
for (final ForeignTojo tojo : tojos) {
final Path file = tojo.verified();
Expand Down

0 comments on commit 2009ce9

Please sign in to comment.