You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/Layouts.java
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,15 +17,19 @@
17
17
packageorg.springframework.boot.loader.tools;
18
18
19
19
importjava.io.File;
20
+
importjava.util.Arrays;
20
21
importjava.util.Collections;
21
22
importjava.util.HashMap;
23
+
importjava.util.HashSet;
22
24
importjava.util.Map;
25
+
importjava.util.Set;
23
26
24
27
/**
25
28
* Common {@link Layout}s.
26
29
*
27
30
* @author Phillip Webb
28
31
* @author Dave Syer
32
+
* @author Andy Wilkinson
29
33
*/
30
34
publicclassLayouts {
31
35
@@ -147,14 +151,18 @@ public boolean isExecutable() {
Copy file name to clipboardExpand all lines: spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/LayoutsTests.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,8 @@ public void moduleLayout() throws Exception {
0 commit comments