src/main/org/apache/tools/ant/types/optional/imageio/Scale.java [92:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public float getHeight() {
        int percIndex = heightStr.indexOf('%');
        if (percIndex > 0) {
            yPercent = true;
            return Float.parseFloat(heightStr.substring(0, percIndex)) / HUNDRED;
        }
        yPercent = false;
        return Float.parseFloat(heightStr);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/org/apache/tools/ant/types/optional/image/Scale.java [94:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public float getHeight() {
        int percIndex = heightStr.indexOf('%');
        if (percIndex > 0) {
            yPercent = true;
            return Float.parseFloat(heightStr.substring(0, percIndex)) / HUNDRED;
        }
        yPercent = false;
        return Float.parseFloat(heightStr);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



