Repository: ant
Updated Branches:
  refs/heads/master 160894d47 -> 46311e173


Turn comments to javadoc

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

Branch: refs/heads/master
Commit: 46311e1730deaa99fa7fd40604a8513f74c24de2
Parents: 160894d
Author: Gintas Grigelionis <[email protected]>
Authored: Fri Apr 20 21:16:07 2018 +0200
Committer: Gintas Grigelionis <[email protected]>
Committed: Fri Apr 20 21:16:07 2018 +0200

----------------------------------------------------------------------
 .../apache/tools/ant/types/TarFileSetTest.java  | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/46311e17/src/tests/junit/org/apache/tools/ant/types/TarFileSetTest.java
----------------------------------------------------------------------
diff --git a/src/tests/junit/org/apache/tools/ant/types/TarFileSetTest.java 
b/src/tests/junit/org/apache/tools/ant/types/TarFileSetTest.java
index abe610a..15d4217 100644
--- a/src/tests/junit/org/apache/tools/ant/types/TarFileSetTest.java
+++ b/src/tests/junit/org/apache/tools/ant/types/TarFileSetTest.java
@@ -45,7 +45,9 @@ public class TarFileSetTest extends AbstractFileSetTest {
         tfs = (TarFileSet) getInstance();
     }
 
-    //check that dir and src are incompatible
+    /**
+     * check that dir and src are incompatible
+     */
     @Test
     public final void testSrcDirAttributes() {
         thrown.expect(BuildException.class);
@@ -54,7 +56,9 @@ public class TarFileSetTest extends AbstractFileSetTest {
         tfs.setDir(new File("examples"));
     }
 
-    //check that dir and src are incompatible
+    /**
+     * check that dir and src are incompatible
+     */
     @Test
     public final void testDirSrcAttributes() {
         thrown.expect(BuildException.class);
@@ -63,7 +67,9 @@ public class TarFileSetTest extends AbstractFileSetTest {
         tfs.setSrc(new File("example.tar"));
     }
 
-    //check that fullpath and prefix are incompatible
+    /**
+     * check that fullpath and prefix are incompatible
+     */
     @Test
     public final void testPrefixFullpathAttributes() {
         thrown.expect(BuildException.class);
@@ -82,7 +88,9 @@ public class TarFileSetTest extends AbstractFileSetTest {
         tfs.setPrefix("/examples");
     }
 
-    // check that reference tarfilesets cannot have specific attributes
+    /**
+     * check that reference tarfilesets cannot have specific attributes
+     */
     @Test
     public final void testRefidSrcAttributes() {
         thrown.expect(BuildException.class);
@@ -91,7 +99,9 @@ public class TarFileSetTest extends AbstractFileSetTest {
         tfs.setSrc(new File("example.tar"));
     }
 
-    // check that a reference tarfileset gets the same attributes as the 
original
+    /**
+     * check that a reference tarfileset gets the same attributes as the 
original
+     */
     @Test
     public final void testAttributes() {
         tfs.setSrc(new File("example.tar"));

Reply via email to