Make ExceptionCollector.Executable public

See gh-27316
This commit is contained in:
Sam Brannen
2021-08-23 11:57:54 +02:00
parent 81a6ba42a3
commit 4c153b80ee

View File

@@ -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;