You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/ant-owanttask/files/MultipleCopy.java

13 lines
295 B

package org.objectweb.util.ant;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.taskdefs.Copy;
public class MultipleCopy extends Copy {
public void execute() throws BuildException {
throw new BuildException("MultipleCopy is not compatible with ant >=1.7.0");
}
}