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-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/BeanTypeRegistry.java
+31-31
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,6 @@
20
20
importjava.lang.reflect.Method;
21
21
importjava.util.Arrays;
22
22
importjava.util.HashMap;
23
-
importjava.util.Iterator;
24
23
importjava.util.LinkedHashSet;
25
24
importjava.util.Map;
26
25
importjava.util.Set;
@@ -145,6 +144,17 @@ public void afterSingletonsInstantiated() {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/condition/ConditionalOnBeanTests.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/ZipInflaterInputStream.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzer.java
+24-18
Original file line number
Diff line number
Diff line change
@@ -48,24 +48,8 @@ protected FailureAnalysis analyze(Throwable rootFailure, NoSuchMethodError cause
48
48
if (actual == null) {
49
49
returnnull;
50
50
}
51
-
StringWriterdescription = newStringWriter();
52
-
PrintWriterwriter = newPrintWriter(description);
53
-
writer.print("An attempt was made to call the method ");
54
-
writer.print(cause.getMessage());
55
-
writer.print(" but it does not exist. Its class, ");
56
-
writer.print(className);
57
-
writer.println(", is available from the following locations:");
58
-
writer.println();
59
-
for (URLcandidate : candidates) {
60
-
writer.print(" ");
61
-
writer.println(candidate);
62
-
}
63
-
writer.println();
64
-
writer.println("It was loaded from the following location:");
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/support/SpringBootServletInitializer.java
-1
Original file line number
Diff line number
Diff line change
@@ -196,7 +196,6 @@ public void onApplicationEvent(ApplicationEnvironmentPreparedEvent event) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzerTests.java
0 commit comments