java.lang.NullPointerException
        at
org.apache.geronimo.connector.outbound.MultiPoolConnectionInterceptor$SubjectCRIKey.equals(MultiPoolConnectionInterceptor.java:193)

source:
return hashcode == o.hashcode &&
                    (subject == null ? o.subject == null :
subject.equals(o.subject) && 
                    cri == null ? o.cri == null : cri.equals(o.cri));

need brackets:
return hashcode == o.hashcode &&
                    (subject == null ? o.subject == null :
subject.equals(o.subject) && 
                    ( cri == null ? o.cri == null : cri.equals(o.cri))
                    );

-- 
View this message in context: 
http://www.nabble.com/NullPointerException-MultiPoolConnectionInterceptor%24SubjectCRIKey.equals-tp23634940s134p23634940.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

Reply via email to