Update of /cvsroot/izpack/izpack-src/src/lib/com/izforge/izpack/ant
In directory sheep:/tmp/cvs-serv7768/src/lib/com/izforge/izpack/ant
Modified Files:
IzPackTask.java
Log Message:
Fixed order of import and propertyset to ant.property
Index: IzPackTask.java
===================================================================
RCS file:
/cvsroot/izpack/izpack-src/src/lib/com/izforge/izpack/ant/IzPackTask.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- IzPackTask.java 8 May 2005 01:48:34 -0000 1.14
+++ IzPackTask.java 17 May 2005 12:36:37 -0000 1.15
@@ -30,7 +30,6 @@
import org.apache.tools.ant.Project;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.types.EnumeratedAttribute;
-import org.apache.tools.ant.types.PropertySet;
import com.izforge.izpack.compiler.Compiler;
import com.izforge.izpack.compiler.PackagerListener;
@@ -288,7 +287,7 @@
*
* @param ps The propertyset collection of properties
*/
- public void addConfiguredPropertyset(PropertySet ps)
+ public void addConfiguredPropertyset(Property ps)
{
if (properties == null) properties = new Properties();
|
|