bigdata-memory commented on code in PR #346:
URL: https://github.com/apache/mnemonic/pull/346#discussion_r1313456108


##########
mnemonic-core/src/main/java/org/apache/mnemonic/AnnotatedDurableEntityClass.java:
##########
@@ -821,8 +821,8 @@ protected void buildDurableMethodSpecs(TypeSpec.Builder 
typespecbuilder) throws
             if 
(methodinfo.elem.asType().toString().contains("ReclaimContext")) {
               VariableElement arg0 = methodinfo.elem.getParameters().get(0);
               code.addStatement("$1N.registerAutoReclaim($2L)", holdername, 
arg0);
-              for (String fname : m_dynfieldsinfo.keySet()) {
-                dynfieldinfo = m_dynfieldsinfo.get(fname);
+              for (Map.Entry<String, AnnotatedDurableEntityClass.FieldInfo> 
entry: m_dynfieldsinfo.entrySet()) {

Review Comment:
   Please remove the "AnnotatedDurableEntityClass."



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@mnemonic.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to