public int hashCode()

in src/main/java/org/apache/freemarker/onlinetester/model/SelectionOption.java [41:47]


    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((label == null) ? 0 : label.hashCode());
        result = prime * result + ((value == null) ? 0 : value.hashCode());
        return result;
    }