public int hashCode()

in src/main/java/org/apache/cassandra/distributed/shared/MessageFilters.java [86:92]


        public int hashCode()
        {
            return (from == null ? 0 : Arrays.hashCode(from))
                   + (to == null ? 0 : Arrays.hashCode(to))
                   + (verbs == null ? 0 : Arrays.hashCode(verbs)
                                          + parent.hashCode());
        }