You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2018/11/12 14:42:34 UTC

[isis] branch v2 updated: ISIS-2006: AnyOutBuffer: fix missing assignment

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch v2
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/v2 by this push:
     new 2195fe3  ISIS-2006: AnyOutBuffer: fix missing assignment
2195fe3 is described below

commit 2195fe31cd66d9c6455fbc4bcbad59f249bc56e6
Author: Andi Huber <ah...@apache.org>
AuthorDate: Mon Nov 12 15:42:26 2018 +0100

    ISIS-2006: AnyOutBuffer: fix missing assignment
---
 core/applib/src/main/java/org/apache/isis/applib/anyio/AnyOutBuffer.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/applib/src/main/java/org/apache/isis/applib/anyio/AnyOutBuffer.java b/core/applib/src/main/java/org/apache/isis/applib/anyio/AnyOutBuffer.java
index b4f3e29..eafa3cd 100644
--- a/core/applib/src/main/java/org/apache/isis/applib/anyio/AnyOutBuffer.java
+++ b/core/applib/src/main/java/org/apache/isis/applib/anyio/AnyOutBuffer.java
@@ -45,6 +45,7 @@ public class AnyOutBuffer implements AnyOut {
             throw new IllegalStateException("Buffer was already written to.");
         }
         Try<T> _try = outputConsumer.apply(buffer);
+        lastTry = _try;
         return _try;
     }