diff --git a/src/main/java/io/openliberty/tools/intellij/util/ExceptionUtil.java b/src/main/java/io/openliberty/tools/intellij/util/ExceptionUtil.java index a6d33b40a..1cc860363 100644 --- a/src/main/java/io/openliberty/tools/intellij/util/ExceptionUtil.java +++ b/src/main/java/io/openliberty/tools/intellij/util/ExceptionUtil.java @@ -36,7 +36,7 @@ public class ExceptionUtil { * @param the type of result expected from the action * @return the result of the action or the fallback value in case of an exception */ - public static T executeWithExceptionHandling(Supplier action, Function fallback) { + public static T executeWithExceptionHandling(Supplier action, Function fallback) { try { return action.get(); } catch (ProcessCanceledException e) { @@ -45,7 +45,7 @@ public static T executeWithExceptionHandling(Supplier action, Function