Skip to content

Commit 8d5a4d0

Browse files
committed
Fix malformed Javadoc comments
1 parent 6743b7b commit 8d5a4d0

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

commons-vfs2-ant/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
* An abstract file synchronization task. Scans a set of source files and folders, and a destination folder, and
3535
* performs actions on missing and out-of-date files. Specifically, performs actions on the following:
3636
* <ul>
37-
* <li>Missing destination file.
38-
* <li>Missing source file.
39-
* <li>Out-of-date destination file.
40-
* <li>Up-to-date destination file.
37+
* <li>Missing destination file.</li>
38+
* <li>Missing source file.</li>
39+
* <li>Out-of-date destination file.</li>
40+
* <li>Up-to-date destination file.</li>
4141
* </ul>
4242
*
4343
* <ul>

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,9 +654,9 @@ protected long doGetLastModifiedTime() throws Exception {
654654
/**
655655
* Creates an output stream to write the file content to. Is only called if:
656656
* <ul>
657-
* <li>{@link #doIsWriteable} returns true.
657+
* <li>{@link #doIsWriteable} returns true.</li>
658658
* <li>{@link #doGetType} returns {@link FileType#FILE}, or {@link #doGetType} returns {@link FileType#IMAGINARY},
659-
* and the file's parent exists and is a folder.
659+
* and the file's parent exists and is a folder.</li>
660660
* </ul>
661661
* It is guaranteed that there are no open stream (input or output) for this file when this method is called.
662662
* <p>

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,9 +481,9 @@ public static boolean fixSeparators(final StringBuilder name) {
481481
/**
482482
* Normalizes a path. Does the following:
483483
* <ul>
484-
* <li>Removes empty path elements.
485-
* <li>Handles '.' and '..' elements.
486-
* <li>Removes trailing separator.
484+
* <li>Removes empty path elements.</li>
485+
* <li>Handles '.' and '..' elements.</li>
486+
* <li>Removes trailing separator.</li>
487487
* </ul>
488488
* <p>
489489
* Its assumed that the separators are already fixed.

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
* This interface is used to manage the lifecycle of all VFS components. This includes all implementations of the
2626
* following interfaces:
2727
* <ul>
28-
* <li>{@link FileProvider}
29-
* <li>{@link org.apache.commons.vfs2.FileSystem}
30-
* <li>{@link FileReplicator}
31-
* <li>{@link TemporaryFileStore}
28+
* <li>{@link FileProvider}</li>
29+
* <li>{@link org.apache.commons.vfs2.FileSystem}</li>
30+
* <li>{@link FileReplicator}</li>
31+
* <li>{@link TemporaryFileStore}</li>
3232
* </ul>
3333
*/
3434
public interface VfsComponent extends Closeable {

0 commit comments

Comments
 (0)