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/isis.git
The following commit(s) were added to refs/heads/master by this push:
new b32c8fa5b1 ISIS-3091: post merge: remove what appears to be debug code
(commons)
b32c8fa5b1 is described below
commit b32c8fa5b15c5673b2b4bf6eb9589666babca165
Author: andi-huber <[email protected]>
AuthorDate: Tue Jul 26 07:48:12 2022 +0200
ISIS-3091: post merge: remove what appears to be debug code (commons)
---
.../java/org/apache/isis/commons/collections/Can_Multiple.java | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git
a/commons/src/main/java/org/apache/isis/commons/collections/Can_Multiple.java
b/commons/src/main/java/org/apache/isis/commons/collections/Can_Multiple.java
index 815ca20738..bbca6975f2 100644
---
a/commons/src/main/java/org/apache/isis/commons/collections/Can_Multiple.java
+++
b/commons/src/main/java/org/apache/isis/commons/collections/Can_Multiple.java
@@ -178,12 +178,7 @@ final class Can_Multiple<T> implements Can<T> {
@Override
public void forEach(final @NonNull Consumer<? super T> action) {
- try {
- elements.forEach(action);
- } finally {
- int dummy;
- dummy = 1;
- }
+ elements.forEach(action);
}
@Override