Skip to content

Commit 9898845

Browse files
committed
Fixed JavaDoc issues.
1 parent 34fe513 commit 9898845

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

src/main/java/org/apache/maven/plugins/clean/CleanMojo.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,15 @@
2929

3030
/**
3131
* Goal which cleans the build.
32-
* <p/>
33-
* <P>
32+
* <p>
3433
* This attempts to clean a project's working directory of the files that were generated at build-time. By default, it
3534
* discovers and deletes the directories configured in <code>project.build.directory</code>,
3635
* <code>project.build.outputDirectory</code>, <code>project.build.testOutputDirectory</code>, and
3736
* <code>project.reporting.outputDirectory</code>.
38-
* </P>
39-
* <p/>
40-
* <P>
37+
* </p>
38+
* <p>
4139
* Files outside the default may also be included in the deletion by configuring the <code>filesets</code> tag.
42-
* </P>
40+
* </p>
4341
*
4442
* @author <a href="mailto:[email protected]">Emmanuel Venisse</a>
4543
* @version $Id$

src/test/java/org/apache/maven/plugins/clean/CleanMojoTest.java

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected void tearDown()
5555
/**
5656
* Tests the simple removal of directories
5757
*
58-
* @throws Exception
58+
* @throws Exception in case of an error.
5959
*/
6060
public void testBasicClean()
6161
throws Exception
@@ -82,7 +82,7 @@ public void testBasicClean()
8282
/**
8383
* Tests the removal of files and nested directories
8484
*
85-
* @throws Exception
85+
* @throws Exception in case of an error.
8686
*/
8787
public void testCleanNestedStructure()
8888
throws Exception
@@ -107,7 +107,7 @@ public void testCleanNestedStructure()
107107
* Tests that no exception is thrown when all internal variables are empty and that it doesn't
108108
* just remove whats there
109109
*
110-
* @throws Exception
110+
* @throws Exception in case of an error.
111111
*/
112112
public void testCleanEmptyDirectories()
113113
throws Exception
@@ -135,7 +135,7 @@ public void testCleanEmptyDirectories()
135135
/**
136136
* Tests the removal of files using fileset
137137
*
138-
* @throws Exception
138+
* @throws Exception in case of an error.
139139
*/
140140
public void testFilesetsClean()
141141
throws Exception
@@ -171,7 +171,7 @@ public void testFilesetsClean()
171171
/**
172172
* Tests the removal of a directory as file
173173
*
174-
* @throws Exception
174+
* @throws Exception in case of an error.
175175
*/
176176
public void testCleanInvalidDirectory()
177177
throws Exception
@@ -200,7 +200,7 @@ public void testCleanInvalidDirectory()
200200
/**
201201
* Tests the removal of a missing directory
202202
*
203-
* @throws Exception
203+
* @throws Exception in case of an error.
204204
*/
205205
public void testMissingDirectory()
206206
throws Exception
@@ -221,10 +221,11 @@ public void testMissingDirectory()
221221

222222
/**
223223
* Test the removal of a locked file on Windows systems.
224-
* <br/>
224+
* <p>
225225
* Note: Unix systems doesn't lock any files.
226+
* </p>
226227
*
227-
* @throws Exception
228+
* @throws Exception in case of an error.
228229
*/
229230
public void testCleanLockedFile()
230231
throws Exception
@@ -276,10 +277,11 @@ public void testCleanLockedFile()
276277

277278
/**
278279
* Test the removal of a locked file on Windows systems.
279-
* <br/>
280+
* <p>
280281
* Note: Unix systems doesn't lock any files.
282+
* </p>
281283
*
282-
* @throws Exception
284+
* @throws Exception in case of an error.
283285
*/
284286
public void testCleanLockedFileWithNoError()
285287
throws Exception

0 commit comments

Comments
 (0)