Autoformat

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@148 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/build.xml b/user/build.xml
index cd6cac7..bfb23c0 100755
--- a/user/build.xml
+++ b/user/build.xml
@@ -28,7 +28,7 @@
 			Causes a security dialog to popup and subsequently blocks testing
 	    -->
 		<exclude name="com/google/gwt/user/client/ui/FormPanelTest.class" />
-		
+
 		<!--
 			Need to confirm with JGW if this should still be disabled
 		-->
@@ -88,12 +88,11 @@
 
 		<!-- Build the BrowserManagerServer_Stub to allow remote browser testing -->
 		<rmic base="${javac.out}" classname="com.google.gwt.junit.remote.BrowserManagerServer">
-			<compilerarg value="-v1.2"/>
-		</rmic>		
+			<compilerarg value="-v1.2" />
+		</rmic>
 	</target>
 
-	<target name="compile.tests"
-	        description="Compiles the test code for this project">
+	<target name="compile.tests" description="Compiles the test code for this project">
 		<mkdir dir="${javac.junit.out}" />
 		<gwt.javac srcdir="test" destdir="${javac.junit.out}">
 			<classpath>
@@ -120,43 +119,27 @@
 		</gwt.checkstyle>
 	</target>
 
-	<target name="remoteweb-test"
-	        description="Run a remoteweb test at the given host and path">
+	<target name="remoteweb-test" description="Run a remoteweb test at the given host and path">
 		<echo message="Performing remote browser testing at rmi://${gwt.remote.browser}" />
-		<gwt.junit test.args="-port ${gwt.junit.port} -out www -web -remoteweb rmi://${gwt.remote.browser}"
-		           test.out="${junit.out}/${gwt.remote.browser}"
-		           test.cases="default.web.tests" />
+		<gwt.junit test.args="-port ${gwt.junit.port} -out www -web -remoteweb rmi://${gwt.remote.browser}" test.out="${junit.out}/${gwt.remote.browser}" test.cases="default.web.tests" />
 	</target>
 
-	<target name="test"
-	        depends="compile, compile.tests"
-	        description="Run hosted-mode, web-mode and remoteweb tests for this project.">
-		<property.ensure name="distro.built"
-		                 location="${gwt.dev.staging.jar}"
-		                 message="GWT must be built before performing any tests.  This can be fixed by running ant in the ${gwt.root} directory." />
+	<target name="test" depends="compile, compile.tests" description="Run hosted-mode, web-mode and remoteweb tests for this project.">
+		<property.ensure name="distro.built" location="${gwt.dev.staging.jar}" message="GWT must be built before performing any tests.  This can be fixed by running ant in the ${gwt.root} directory." />
 
 		<!--
 			Run hosted and web mode tests for the platform on which this build
 			is executing
 		-->
 		<parallel threadcount="1">
-			<gwt.junit test.args="-port ${gwt.junit.port}"
-			           test.out="${junit.out}/${build.host.platform}-hosted-mode"
-			           test.cases="default.hosted.tests" />
+			<gwt.junit test.args="-port ${gwt.junit.port}" test.out="${junit.out}/${build.host.platform}-hosted-mode" test.cases="default.hosted.tests" />
 
-			<gwt.junit test.args="-port ${gwt.junit.port} -out www -web"
-			           test.out="${junit.out}/${build.host.platform}-web-mode"
-			           test.cases="default.web.tests" />
+			<gwt.junit test.args="-port ${gwt.junit.port} -out www -web" test.out="${junit.out}/${build.host.platform}-web-mode" test.cases="default.web.tests" />
 
 			<!--
 				Run remote browser testing for the comma delimited list of remote browsers
 			-->
-			<foreach list="${gwt.remote.browsers}"
-			         delimiter=","
-			         parallel="true"
-			         maxThreads="1"
-			         target="remoteweb-test"
-			         param="gwt.remote.browser" />
+			<foreach list="${gwt.remote.browsers}" delimiter="," parallel="true" maxThreads="1" target="remoteweb-test" param="gwt.remote.browser" />
 		</parallel>
 	</target>