You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to clean up my memory when using the a class that overrides Display (we use prefuse in an MDI environment), I was seeing that my classes were still held in memory, due to m_predicate in Display.java holding on to my class' reference.
To fix it, I added a method in AbstractExpression.java: removeAllExpressionListeners() that just clears m_listeners, and then call that method when I am cleaning up my Display.
The text was updated successfully, but these errors were encountered:
When trying to clean up my memory when using the a class that overrides
Display
(we use prefuse in an MDI environment), I was seeing that my classes were still held in memory, due tom_predicate
inDisplay.java
holding on to my class' reference.To fix it, I added a method in
AbstractExpression.java
:removeAllExpressionListeners()
that just clearsm_listeners
, and then call that method when I am cleaning up myDisplay
.The text was updated successfully, but these errors were encountered: