You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@causeway.apache.org by ah...@apache.org on 2023/02/26 21:22:39 UTC

[causeway] branch spring6 updated (4ce2a2cb70 -> de3cb2f476)

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a change to branch spring6
in repository https://gitbox.apache.org/repos/asf/causeway.git


    from 4ce2a2cb70 CAUSEWAY-3304: [Commons] Code Quality Improvements for 2.0.0 Release
     add b2fe649bf0 CAUSEWAY-3304: Try: polishing API and finalizing implementations
     new de3cb2f476 Merge remote-tracking branch 'origin/master' into spring6

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/causeway/commons/functional/Try.java    | 91 +++++++++++++++-------
 1 file changed, 61 insertions(+), 30 deletions(-)


[causeway] 01/01: Merge remote-tracking branch 'origin/master' into spring6

Posted by ah...@apache.org.
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 de3cb2f47653d64400c0c4fce242be5edab5c883
Merge: 4ce2a2cb70 b2fe649bf0
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Feb 26 22:22:29 2023 +0100

    Merge remote-tracking branch 'origin/master' into spring6

 .../apache/causeway/commons/functional/Try.java    | 91 +++++++++++++++-------
 1 file changed, 61 insertions(+), 30 deletions(-)

diff --cc commons/src/main/java/org/apache/causeway/commons/functional/Try.java
index 1f3f9cddfd,3fa5639f14..a3d9e49a1b
--- a/commons/src/main/java/org/apache/causeway/commons/functional/Try.java
+++ b/commons/src/main/java/org/apache/causeway/commons/functional/Try.java
@@@ -22,14 -22,10 +22,12 @@@ import java.io.Serializable
  import java.util.NoSuchElementException;
  import java.util.Optional;
  import java.util.concurrent.Callable;
- import java.util.function.Consumer;
  import java.util.function.Function;
  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;