You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2016/04/01 06:19:23 UTC

[2/2] ant git commit: whitespace

whitespace


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/d02ecf6f
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/d02ecf6f
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/d02ecf6f

Branch: refs/heads/master
Commit: d02ecf6fec116b2a97418c6365d35ecfc1d432d1
Parents: fd2327b
Author: Stefan Bodewig <bo...@apache.org>
Authored: Fri Apr 1 06:19:02 2016 +0200
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Fri Apr 1 06:19:02 2016 +0200

----------------------------------------------------------------------
 .../apache/tools/ant/taskdefs/JavacTest.java    | 38 ++++++++++----------
 1 file changed, 19 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/d02ecf6f/src/tests/junit/org/apache/tools/ant/taskdefs/JavacTest.java
----------------------------------------------------------------------
diff --git a/src/tests/junit/org/apache/tools/ant/taskdefs/JavacTest.java b/src/tests/junit/org/apache/tools/ant/taskdefs/JavacTest.java
index 755921d..364a50e 100644
--- a/src/tests/junit/org/apache/tools/ant/taskdefs/JavacTest.java
+++ b/src/tests/junit/org/apache/tools/ant/taskdefs/JavacTest.java
@@ -250,29 +250,29 @@ public class JavacTest {
 
     @Test(expected = BuildException.class)
     public void testModulesourcepathOrSrcDirRequired() {
-            javac.checkParameters();
+        javac.checkParameters();
     }
 
     @Test(expected = BuildException.class)
     public void testModulesourcepathAndSrcDirForbidden() {
-            javac.checkParameters();
-            final Path p = new Path(project);
-            p.setPath("src");
-            javac.setSrcdir(p);
-            final Path mp = new Path(project);
-            p.setPath("modsrc");
-            javac.setModulesourcepath(mp);
+        javac.checkParameters();
+        final Path p = new Path(project);
+        p.setPath("src");
+        javac.setSrcdir(p);
+        final Path mp = new Path(project);
+        p.setPath("modsrc");
+        javac.setModulesourcepath(mp);
     }
 
     @Test(expected = BuildException.class)
     public void testModulesourcepathAndSourcepathForbidden() {
-            javac.checkParameters();
-            final Path p = new Path(project);
-            p.setPath("src");
-            javac.setSourcepath(p);
-            final Path mp = new Path(project);
-            p.setPath("modsrc");
-            javac.setModulesourcepath(mp);
+        javac.checkParameters();
+        final Path p = new Path(project);
+        p.setPath("src");
+        javac.setSourcepath(p);
+        final Path mp = new Path(project);
+        p.setPath("modsrc");
+        javac.setModulesourcepath(mp);
     }
 
     @Test
@@ -303,9 +303,9 @@ public class JavacTest {
 
     @Test(expected = BuildException.class)
     public void testModulesourcepathRequiresDestdir() {
-            final Path p = new Path(project);
-            p.setPath("src");
-            javac.setModulesourcepath(p);
-            javac.checkParameters();
+        final Path p = new Path(project);
+        p.setPath("src");
+        javac.setModulesourcepath(p);
+        javac.checkParameters();
     }
 }