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

(-)src/main/org/apache/tools/ant/taskdefs/Property.java (+10 lines)
Lines 141-146 Link Here
141
    }
141
    }
142
142
143
    /**
143
    /**
144
     * Set a multiline property.
145
     * @param msg the CDATA text to append to the output text
146
     */
147
    public void addText(String msg) {
148
        msg = getProject().replaceProperties(msg);
149
        if (value == null) value = msg;
150
        else value += msg;
151
    }
152
153
    /**
144
     * Filename of a property file to load.
154
     * Filename of a property file to load.
145
     * @param file filename
155
     * @param file filename
146
     *
156
     *

Return to bug 32917