From 4c153b80eef662af0d5ae3b316aa4f9f3d874e8a Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 23 Aug 2021 11:57:54 +0200 Subject: [PATCH] Make ExceptionCollector.Executable public See gh-27316 --- .../java/org/springframework/test/util/ExceptionCollector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-test/src/main/java/org/springframework/test/util/ExceptionCollector.java b/spring-test/src/main/java/org/springframework/test/util/ExceptionCollector.java index 1c5ffaa3323..f53190b7aff 100644 --- a/spring-test/src/main/java/org/springframework/test/util/ExceptionCollector.java +++ b/spring-test/src/main/java/org/springframework/test/util/ExceptionCollector.java @@ -118,7 +118,7 @@ public class ExceptionCollector { * except that an {@code Executable} can throw any kind of exception. */ @FunctionalInterface - interface Executable { + public interface Executable { void execute() throws Throwable;