View | Details | Raw Unified | Return to bug 51512
Collapse All | Expand All

(-)src/core/org/apache/jmeter/testelement/property/FunctionProperty.java (-2 / +3 lines)
Lines 64-73 Link Here
64
64
65
    @Override
65
    @Override
66
    public int hashCode(){
66
    public int hashCode(){
67
        int hash = super.hashCode();
67
68
        if (function != null) {
68
        if (function != null) {
69
            hash = hash*37 + function.hashCode();
69
            return function.hashCode();
70
        }
70
        }
71
        int hash = super.hashCode();
71
        return hash;
72
        return hash;
72
    }
73
    }
73
74

Return to bug 51512