Skip to content

Commit

Permalink
#3236 spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
c71n93 committed Jul 23, 2024
1 parent 24d50b5 commit da52b8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void exec() throws IOException {
if (this.central == null) {
this.central = new Central(this.project, this.session, this.manager);
}
for (final Dependency dep: DownloadDepsMojo.DEPS) {
for (final Dependency dep : DownloadDepsMojo.DEPS) {
this.central.accept(dep, this.classesDir.toPath());
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void createsOutDir(@TempDir final Path temp) throws IOException {
@Test
void downloadsCorrectly(@TempDir final Path temp) throws IOException {
new FakeMaven(temp).execute(DownloadDepsMojo.class);
for (final String dep: DownloadDepsMojoTest.DEPS_NAMES) {
for (final String dep : DownloadDepsMojoTest.DEPS_NAMES) {
Assertions.assertTrue(
Files.exists(temp.resolve(DownloadDepsMojoTest.OUT).resolve(dep)),
String.format(
Expand Down

0 comments on commit da52b8a

Please sign in to comment.