org.drools.marshalling.SerializablePlaceholderResolverStrategy infinite loop
----------------------------------------------------------------------------
Key: JBRULES-1813
URL:
https://jira.jboss.org/jira/browse/JBRULES-1813
Project: JBoss Drools
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: drools-core
Affects Versions: 5.0.0.M2
Reporter: Cezary Dendek
Assignee: Mark Proctor
Method:
public boolean accept(Object object) {
return this.accept( object );
}
Should be implemented in this way (in other case it is simple infinite recurrency):
public boolean accept(Object object) {
return acceptor.accept( object );
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira