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/28 07:22:45 UTC

[causeway] branch spring6 updated (6e746f9fac -> 228f99664f)

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 6e746f9fac Merge pull request #1462 from apache/dependabot/maven/spring6/wicket-bootstrap.version-6.0.1
     add 6aadec536f Bump structurizr-export from 1.10.0 to 1.10.1
     add 3c04c9dc49 Merge pull request #1458 from apache/dependabot/maven/master/com.structurizr-structurizr-export-1.10.1
     add 885cb35ccc Bump dependency-check-maven from 8.1.0 to 8.1.1
     add 4f81962e5e Merge pull request #1457 from apache/dependabot/maven/master/org.owasp-dependency-check-maven-8.1.1
     add 39b2329b0f Bump maven.plugin.tools.version from 3.7.1 to 3.8.1
     add 9a6a133d12 Merge pull request #1456 from apache/dependabot/maven/master/maven.plugin.tools.version-3.8.1
     add a75d2ca0a9 CAUSEWAY-3304: Railway: opposed to Try, non of the consumer/mapper exceptions are catched
     new 228f99664f CAUSEWAY-3304: [Commons] Code Quality Improvements for 2.0.0 Release

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:
 .../causeway/commons/functional/Railway.java       | 75 ++++++++++++----------
 .../commons/functional/ThrowingRunnable.java       |  2 +-
 .../apache/causeway/commons/functional/Try.java    | 35 +++++-----
 .../interactions/managed/InteractionRailway.java   |  5 +-
 4 files changed, 64 insertions(+), 53 deletions(-)


[causeway] 01/01: 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 228f99664f4c17ba745b7232ba9269de0f36b405
Merge: 6e746f9fac a75d2ca0a9
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Feb 28 08:22:40 2023 +0100

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

 .../causeway/commons/functional/Railway.java       | 75 ++++++++++++----------
 .../commons/functional/ThrowingRunnable.java       |  2 +-
 .../apache/causeway/commons/functional/Try.java    | 35 +++++-----
 .../interactions/managed/InteractionRailway.java   |  5 +-
 4 files changed, 64 insertions(+), 53 deletions(-)

diff --cc commons/src/main/java/org/apache/causeway/commons/functional/Railway.java
index c9c847e633,735f7475cf..12bd367356
--- a/commons/src/main/java/org/apache/causeway/commons/functional/Railway.java
+++ b/commons/src/main/java/org/apache/causeway/commons/functional/Railway.java
@@@ -23,7 -23,6 +23,8 @@@ import java.util.Optional
  import java.util.function.Function;
  
  import org.springframework.lang.Nullable;
++import org.springframework.util.function.ThrowingConsumer;
++import org.springframework.util.function.ThrowingFunction;
  
  import lombok.NonNull;
  import lombok.RequiredArgsConstructor;
diff --cc core/metamodel/src/main/java/org/apache/causeway/core/metamodel/interactions/managed/InteractionRailway.java
index 3a954ca34e,a4fbc4f620..99cb90e747
--- a/core/metamodel/src/main/java/org/apache/causeway/core/metamodel/interactions/managed/InteractionRailway.java
+++ b/core/metamodel/src/main/java/org/apache/causeway/core/metamodel/interactions/managed/InteractionRailway.java
@@@ -19,10 -19,10 +19,11 @@@
  package org.apache.causeway.core.metamodel.interactions.managed;
  
  import java.io.Serializable;
- import java.util.function.Function;
+ 
++import org.springframework.util.function.ThrowingFunction;
 +
  import org.apache.causeway.commons.functional.Railway;
  import org.apache.causeway.commons.functional.Railway.HasRailway;
 -import org.apache.causeway.commons.functional.ThrowingFunction;
  
  import lombok.AccessLevel;
  import lombok.EqualsAndHashCode;