This is an automated email from the ASF dual-hosted git repository. ahuber pushed a commit to branch spring6 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 4ce2a2cb703b2ea66cc2c7c956b7842524a58d63 Author: Andi Huber <[email protected]> AuthorDate: Sun Feb 26 22:00:06 2023 +0100 CAUSEWAY-3304: [Commons] Code Quality Improvements for 2.0.0 Release --- commons/src/main/java/org/apache/causeway/commons/functional/Try.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commons/src/main/java/org/apache/causeway/commons/functional/Try.java b/commons/src/main/java/org/apache/causeway/commons/functional/Try.java index 2a8ab52cf2..1f3f9cddfd 100644 --- a/commons/src/main/java/org/apache/causeway/commons/functional/Try.java +++ b/commons/src/main/java/org/apache/causeway/commons/functional/Try.java @@ -28,6 +28,8 @@ import java.util.function.Supplier; import java.util.function.UnaryOperator; import org.springframework.lang.Nullable; +import org.springframework.util.function.ThrowingConsumer; +import org.springframework.util.function.ThrowingFunction; import org.apache.causeway.commons.internal.exceptions._Exceptions;
