Github user anew commented on a diff in the pull request:
https://github.com/apache/incubator-tephra/pull/53#discussion_r138534049
--- Diff: tephra-core/src/main/java/org/apache/tephra/persist/AbstractTransactionLog.java
---
@@ -211,26 +212,36 @@ private void sync() throws IOException {
// prevent writer being dereferenced
--- End diff --
I am not sure why this is needed. As long as this method is running, there is a stack
frame (= a GC root) that has a reference to this, and hence to its members. Anybody know why
this is here?
---
|