This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/master by this push:
new 2d00287b68 CAUSEWAY-3075: just removing debug line in prev. commit
2d00287b68 is described below
commit 2d00287b688583272300462cbd1f517ec78b8563
Author: andi-huber <[email protected]>
AuthorDate: Thu Apr 13 17:56:14 2023 +0200
CAUSEWAY-3075: just removing debug line in prev. commit
---
.../core/runtimeservices/transaction/TransactionServiceSpring.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/transaction/TransactionServiceSpring.java
b/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/transaction/TransactionServiceSpring.java
index b0ba590ea4..ca4552dfbe 100644
---
a/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/transaction/TransactionServiceSpring.java
+++
b/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/transaction/TransactionServiceSpring.java
@@ -308,7 +308,7 @@ implements
if(ex instanceof RuntimeException) {
val translatedEx = persistenceExceptionTranslators.stream()
- .peek(translator->System.out.printf("%s%n",
translator.getClass().getName()))
+ //debug .peek(translator->System.out.printf("%s%n",
translator.getClass().getName()))
.map(translator->translator.translateExceptionIfPossible((RuntimeException)ex))
.filter(_NullSafe::isPresent)
.findFirst()