From 0fa7dba87a02684667c8e2b285b3c1c4f786e8c6 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Sat, 5 Nov 2022 19:32:10 -0700 Subject: [PATCH] Fix formatting See gh-33013 --- .../boot/context/annotation/ImportCandidates.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/ImportCandidates.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/ImportCandidates.java index 6cf9a8d9b3..59fe569e94 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/ImportCandidates.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/ImportCandidates.java @@ -102,8 +102,7 @@ public final class ImportCandidates implements Iterable { return classLoader.getResources(location); } catch (IOException ex) { - throw new IllegalArgumentException("Failed to load configurations from location [" + location + "]", - ex); + throw new IllegalArgumentException("Failed to load configurations from location [" + location + "]", ex); } }