| @@ -27,7 +27,7 @@ | |||||
| <target name="test2"> | <target name="test2"> | ||||
| <cvspass | <cvspass | ||||
| cvsroot=":pserver:anoncvs@jakarta.apache.org:/home/cvspublic" | cvsroot=":pserver:anoncvs@jakarta.apache.org:/home/cvspublic" | ||||
| passfile="testpassfile.tmp"%/> | |||||
| passfile="testpassfile.tmp"/> | |||||
| </target> | </target> | ||||
| <!-- testPassFile --> | <!-- testPassFile --> | ||||
| @@ -113,18 +113,18 @@ public class test1 { | |||||
| private static final String GREETING="*/Hello/*"; | private static final String GREETING="*/Hello/*"; | ||||
| private static final String GREETING1="/*Hello*/"; | private static final String GREETING1="/*Hello*/"; | ||||
| public static void main( String args[] ) { | |||||
| public static void main(String args[]) { | |||||
| } | } | ||||
| }</echo> | }</echo> | ||||
| <echo file="nocomments.tmp"> | <echo file="nocomments.tmp"> | ||||
| public class test1 { | public class test1 { | ||||
| int x = 1/2; | int x = 1/2; | ||||
| private static final String GREETING="*/Hello/*"; | private static final String GREETING="*/Hello/*"; | ||||
| private static final String GREETING1="/*Hello*/"; | private static final String GREETING1="/*Hello*/"; | ||||
| public static void main( String args[] ) { | |||||
| public static void main(String args[]) { | |||||
| } | } | ||||
| }</echo> | }</echo> | ||||
| <loadfile srcFile="loadfile1.tmp" | <loadfile srcFile="loadfile1.tmp" | ||||
| @@ -29,10 +29,10 @@ | |||||
| <script language="javascript"> <![CDATA[ | <script language="javascript"> <![CDATA[ | ||||
| for (i=1; i<=10; i++) { | |||||
| for (i = 1; i <= 10; i++) { | |||||
| echo = testproject.createTask("echo"); | echo = testproject.createTask("echo"); | ||||
| setup1.addTask(echo); | setup1.addTask(echo); | ||||
| echo.setMessage(i*i); | |||||
| echo.setMessage(i * i); | |||||
| } | } | ||||
| ]]> </script> | ]]> </script> | ||||
| @@ -85,7 +85,7 @@ package org.example; | |||||
| import java.rmi.Remote; | import java.rmi.Remote; | ||||
| import java.rmi.RemoteException; | import java.rmi.RemoteException; | ||||
| public interface Foo extends Remote { | public interface Foo extends Remote { | ||||
| long bar() throws RemoteException ; | |||||
| long bar() throws RemoteException; | |||||
| }]]></echo> | }]]></echo> | ||||
| <echo file="${input}/org/example/FooImpl.java"><![CDATA[ | <echo file="${input}/org/example/FooImpl.java"><![CDATA[ | ||||
| package org.example; | package org.example; | ||||