Skip to content

Commit 6f0d994

Browse files
committed
Fix some more JavaDoc comment
1 parent f6149bf commit 6f0d994

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,16 @@ public class TarArchiver
6565
* Set how to handle long files, those with a path>100 chars.
6666
* Optional, default=warn.
6767
* <p>
68-
* Allowable values are
68+
* Allowable values are </p>
6969
* <ul>
70-
* <li> truncate - paths are truncated to the maximum length
71-
* <li> fail - paths greater than the maximum cause a build exception
72-
* <li> warn - paths greater than the maximum cause a warning and GNU is used
73-
* <li> gnu - GNU extensions are used for any paths greater than the maximum.
74-
* <li> posix - posix extensions are used for any paths greater than the maximum.
75-
* <li> posixwarn - posix extensions are used (with warning) for any paths greater than the maximum.
76-
* <li> omit - paths greater than the maximum are omitted from the archive
70+
* <li> truncate - paths are truncated to the maximum length </li>
71+
* <li> fail - paths greater than the maximum cause a build exception </li>
72+
* <li> warn - paths greater than the maximum cause a warning and GNU is used </li>
73+
* <li> gnu - GNU extensions are used for any paths greater than the maximum. </li>
74+
* <li> posix - posix extensions are used for any paths greater than the maximum. </li>
75+
* <li> posixwarn - posix extensions are used (with warning) for any paths greater than the maximum. </li>
76+
* <li> omit - paths greater than the maximum are omitted from the archive </li>
7777
* </ul>
78-
* </p>
7978
*
8079
* @param mode the mode to handle long file names.
8180
*/

src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,14 @@ public TarUnArchiver( File sourceFile )
5757
/**
5858
* Set decompression algorithm to use; default=none.
5959
* <p>
60-
* Allowable values are
60+
* Allowable values are </p>
6161
* <ul>
6262
* <li>none - no compression</li>
6363
* <li>gzip - Gzip compression</li>
6464
* <li>bzip2 - Bzip2 compression</li>
6565
* <li>snappy - Snappy compression</li>
6666
* <li>xz - Xz compression</li>
6767
* </ul>
68-
* </p>
6968
*
7069
* @param method compression method
7170
*/

0 commit comments

Comments
 (0)