Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 86903 | Differences between
and this patch

Collapse All | Expand All

(-)apache-ant-1.6.2.orig/src/main/org/apache/tools/ant/taskdefs/Javac.java (+6 lines)
Lines 148-153 Link Here
148
     * @return value of source.
148
     * @return value of source.
149
     */
149
     */
150
    public String getSource() {
150
    public String getSource() {
151
        if (source==null) {
152
            return getProject().getProperty("build.source");
153
        }
151
        return source;
154
        return source;
152
    }
155
    }
153
156
Lines 573-578 Link Here
573
     * @return the target VM
576
     * @return the target VM
574
     */
577
     */
575
    public String getTarget() {
578
    public String getTarget() {
579
        if (target==null) {
580
            return getProject().getProperty("build.target");
581
        }
576
        return target;
582
        return target;
577
    }
583
    }
578
584

Return to bug 86903