Erik Hatcher <eri..hatchersolutions.com> wrote:
>      expression.andExp(ExpressionFactory.matchExp("password", password));
Note that the above code is incorrect.
You need to use the following.
        expression = expression.andExp(ExpressionFactory.matchExp("password", 
password));
Expressions should be treated as immutable in this context.  (like 
BigDecimal.add())
This archive was generated by hypermail 2.0.0 : Fri Apr 29 2005 - 13:49:30 EDT