Description
In ExpressionEnumerator.java the below code will fail if executed with a ClassCastException
if ( node instanceof ApproximateNode )
{ list = enumEquality( ( EqualityNode ) node ); // line 135 This cast will always throw a ClassCastException }