return ((us != null) && (them != null)) ? Arrays.equals(us,them) : (us == them); | return ((us != null) && (them != null)) ? us.equals(them) : (us == them); | Arrays.equals(us,them) | us.equals(them) | wildfly | 58a3b0fd8215cfc41016127db3b5d5447dfccf71 | org.wildfly.clustering.marshalling.jboss.SimpleMarshalledValue | | | | | | Uses | True |