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:00:10 UTC

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

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 46dbc2ac6f CAUSEWAY-3304: [Commons] Code Quality Improvements for 2.0.0 Release
     add a387ad2094 CAUSEWAY-3304: Try: reworking some of the problematic methods
     new 2018a2760b Merge remote-tracking branch 'origin/master' into spring6
     new 4ce2a2cb70 CAUSEWAY-3304: [Commons] Code Quality Improvements for 2.0.0 Release

The 2 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    | 153 ++++++++++++++++++---
 .../org/apache/causeway/commons/io/DataSource.java |   3 +-
 .../restfulobjects/client/RestfulClient.java       |   3 +-
 .../viewer/resources/ObjectActionArgHelper.java    |   4 +-
 4 files changed, 137 insertions(+), 26 deletions(-)


[causeway] 01/02: 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 2018a2760bef2a459dcc92d686daf6551c893c5f
Merge: 46dbc2ac6f a387ad2094
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Feb 26 21:59:18 2023 +0100

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

 .../apache/causeway/commons/functional/Try.java    | 151 ++++++++++++++++++---
 .../org/apache/causeway/commons/io/DataSource.java |   3 +-
 .../restfulobjects/client/RestfulClient.java       |   3 +-
 .../viewer/resources/ObjectActionArgHelper.java    |   4 +-
 4 files changed, 135 insertions(+), 26 deletions(-)



[causeway] 02/02: CAUSEWAY-3304: [Commons] Code Quality Improvements for 2.0.0 Release

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 4ce2a2cb703b2ea66cc2c7c956b7842524a58d63
Author: Andi Huber <ah...@apache.org>
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;