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 06:58:38 UTC

[causeway] branch spring6 updated (153a320622 -> 46dbc2ac6f)

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 153a320622 CAUSEWAY-3304: [Commons] Code Quality Improvements for 2.0.0 Release
     add 315c50859f CAUSEWAY-3304: adds DataSource methods for convenience
     add 033b6f7d48 CAUSEWAY-3304: make DataSource#ofFile null-able
     add 081512c473 CAUSEWAY-3304: make other args in DataSource null-able, where it makes sense
     new 0850d3c5b4 Merge remote-tracking branch 'origin/master' into spring6
     new 46dbc2ac6f 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:
 .../org/apache/causeway/commons/io/DataSource.java | 75 ++++++++++++++++++++--
 .../org/apache/causeway/commons/io/FileUtils.java  | 28 ++++----
 2 files changed, 83 insertions(+), 20 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 0850d3c5b4ce626f59db2f66341662b695c5caf5
Merge: 153a320622 081512c473
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Feb 26 07:58:15 2023 +0100

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

 .../org/apache/causeway/commons/io/DataSource.java | 75 ++++++++++++++++++++--
 .../org/apache/causeway/commons/io/FileUtils.java  | 28 ++++----
 2 files changed, 83 insertions(+), 20 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 46dbc2ac6f423002cb30f651d0bc021ba31cb510
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Feb 26 07:58:34 2023 +0100

    CAUSEWAY-3304: [Commons] Code Quality Improvements for 2.0.0 Release
---
 commons/src/main/java/org/apache/causeway/commons/io/DataSource.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/commons/src/main/java/org/apache/causeway/commons/io/DataSource.java b/commons/src/main/java/org/apache/causeway/commons/io/DataSource.java
index ff5f206d5f..6ece139b8b 100644
--- a/commons/src/main/java/org/apache/causeway/commons/io/DataSource.java
+++ b/commons/src/main/java/org/apache/causeway/commons/io/DataSource.java
@@ -29,9 +29,9 @@ import java.util.function.Function;
 import java.util.function.Supplier;
 
 import org.springframework.lang.Nullable;
+import org.springframework.util.function.ThrowingConsumer;
+import org.springframework.util.function.ThrowingFunction;
 
-import org.apache.causeway.commons.functional.ThrowingConsumer;
-import org.apache.causeway.commons.functional.ThrowingFunction;
 import org.apache.causeway.commons.functional.Try;
 import org.apache.causeway.commons.internal.base._NullSafe;
 import org.apache.causeway.commons.internal.base._Strings;