This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d5a4d0a1 Fix malformed Javadoc comments
8d5a4d0a1 is described below

commit 8d5a4d0a1e3c870b7acabea18a304abce22ee50f
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 14 08:27:51 2025 -0500

    Fix malformed Javadoc comments
---
 .../main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java | 8 ++++----
 .../java/org/apache/commons/vfs2/provider/AbstractFileObject.java | 4 ++--
 .../src/main/java/org/apache/commons/vfs2/provider/UriParser.java | 6 +++---
 .../main/java/org/apache/commons/vfs2/provider/VfsComponent.java  | 8 ++++----
 4 files changed, 13 insertions(+), 13 deletions(-)

diff --git 
a/commons-vfs2-ant/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java
 
b/commons-vfs2-ant/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java
index b0da49764..28ec1efe1 100644
--- 
a/commons-vfs2-ant/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java
+++ 
b/commons-vfs2-ant/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java
@@ -34,10 +34,10 @@ import org.apache.tools.ant.Project;
  * An abstract file synchronization task. Scans a set of source files and 
folders, and a destination folder, and
  * performs actions on missing and out-of-date files. Specifically, performs 
actions on the following:
  * <ul>
- * <li>Missing destination file.
- * <li>Missing source file.
- * <li>Out-of-date destination file.
- * <li>Up-to-date destination file.
+ * <li>Missing destination file.</li>
+ * <li>Missing source file.</li>
+ * <li>Out-of-date destination file.</li>
+ * <li>Up-to-date destination file.</li>
  * </ul>
  *
  * <ul>
diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java
 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java
index 9798530a3..b0688a5fb 100644
--- 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java
+++ 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java
@@ -654,9 +654,9 @@ public abstract class AbstractFileObject<AFS extends 
AbstractFileSystem> impleme
     /**
      * Creates an output stream to write the file content to. Is only called 
if:
      * <ul>
-     * <li>{@link #doIsWriteable} returns true.
+     * <li>{@link #doIsWriteable} returns true.</li>
      * <li>{@link #doGetType} returns {@link FileType#FILE}, or {@link 
#doGetType} returns {@link FileType#IMAGINARY},
-     * and the file's parent exists and is a folder.
+     * and the file's parent exists and is a folder.</li>
      * </ul>
      * It is guaranteed that there are no open stream (input or output) for 
this file when this method is called.
      * <p>
diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java
index 7cf6cb229..b67df24eb 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java
@@ -481,9 +481,9 @@ public final class UriParser {
     /**
      * Normalizes a path. Does the following:
      * <ul>
-     * <li>Removes empty path elements.
-     * <li>Handles '.' and '..' elements.
-     * <li>Removes trailing separator.
+     * <li>Removes empty path elements.</li>
+     * <li>Handles '.' and '..' elements.</li>
+     * <li>Removes trailing separator.</li>
      * </ul>
      * <p>
      * Its assumed that the separators are already fixed.
diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java
index b0d848ec1..a20b9c907 100644
--- 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java
+++ 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java
@@ -25,10 +25,10 @@ import org.apache.commons.vfs2.FileSystemException;
  * This interface is used to manage the lifecycle of all VFS components. This 
includes all implementations of the
  * following interfaces:
  * <ul>
- * <li>{@link FileProvider}
- * <li>{@link org.apache.commons.vfs2.FileSystem}
- * <li>{@link FileReplicator}
- * <li>{@link TemporaryFileStore}
+ * <li>{@link FileProvider}</li>
+ * <li>{@link org.apache.commons.vfs2.FileSystem}</li>
+ * <li>{@link FileReplicator}</li>
+ * <li>{@link TemporaryFileStore}</li>
  * </ul>
  */
 public interface VfsComponent extends Closeable {

Reply via email to