Skip to content

Commit de3e994

Browse files
committed
[ci] Fix single line javadocs to multi line javadocs
1 parent 8468cb8 commit de3e994

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/main/java/org/apache/ibatis/io/JBoss6VFS.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ protected static void checkReturnType(Method method, Class<?> expected) {
140140
}
141141
}
142142

143-
/** Mark this {@link VFS} as invalid for the current environment. */
143+
/**
144+
* Mark this {@link VFS} as invalid for the current environment.
145+
*/
144146
protected static void setInvalid() {
145147
if (JBoss6VFS.valid.booleanValue()) {
146148
log.debug("JBoss 6 VFS API is not available in this environment.");

src/main/java/org/apache/ibatis/io/VFS.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ public abstract class VFS {
3838
/** The built-in implementations. */
3939
public static final Class<?>[] IMPLEMENTATIONS = { JBoss6VFS.class, DefaultVFS.class };
4040

41-
/** The list to which implementations are added by {@link #addImplClass(Class)}. */
41+
/**
42+
* The list to which implementations are added by {@link #addImplClass(Class)}.
43+
*/
4244
public static final List<Class<? extends VFS>> USER_IMPLEMENTATIONS = new ArrayList<>();
4345

4446
/** Singleton instance holder. */

0 commit comments

Comments
 (0)