Skip to content

Commit 9646f02

Browse files
committed
Undo more whitespace changes
1 parent f515268 commit 9646f02

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/test/java/io/vertx/starter/service/GeneratorTest.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ void afterEach() {
140140
static void afterAll() throws Exception {
141141
try (Stream<Path> pathStream = Files.walk(tempDir)) {
142142
pathStream
143-
.sorted(Comparator.reverseOrder())
144-
.map(Path::toFile)
145-
.forEach(File::delete);
143+
.sorted(Comparator.reverseOrder())
144+
.map(Path::toFile)
145+
.forEach(File::delete);
146146
}
147147
}
148148

@@ -161,8 +161,7 @@ static Stream<VertxProject> testProjects() throws IOException {
161161
.filter(version -> !version.endsWith("-SNAPSHOT"))
162162
.toList();
163163

164-
List<Set<String>> testDeps = Arrays.asList(Collections.singleton("vertx-unit"),
165-
Collections.singleton("vertx-junit5"));
164+
List<Set<String>> testDeps = Arrays.asList(Collections.singleton("vertx-unit"), Collections.singleton("vertx-junit5"));
166165

167166
Stream.Builder<VertxProject> builder = Stream.builder();
168167
for (BuildTool buildTool : BuildTool.values()) {

0 commit comments

Comments
 (0)