Skip to content

Commit

Permalink
Replaced </?TT> by </?code> in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
elecharny committed Jul 20, 2022
1 parent f827f75 commit 9f4c284
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions mina-core/src/main/java/org/apache/mina/core/IoUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public static void awaitUninterruptably(Iterable<? extends IoFuture> futures) {
* @param futures The {@link IoFuture}s we are waiting on
* @param timeout The maximum time we wait for the {@link IoFuture}s to complete
* @param unit The Time unit to use for the timeout
* @return <code>TRUE</TT> if all the {@link IoFuture} have been completed, <code>FALSE</code> if
* @return <code>TRUE</code> if all the {@link IoFuture} have been completed, <code>FALSE</code> if
* at least one {@link IoFuture} haas been interrupted
* @throws InterruptedException If one of the {@link IoFuture} is interrupted
*/
Expand All @@ -172,7 +172,7 @@ public static boolean await(Iterable<? extends IoFuture> futures, long timeout,
*
* @param futures The {@link IoFuture}s we are waiting on
* @param timeoutMillis The maximum milliseconds we wait for the {@link IoFuture}s to complete
* @return <code>TRUE</TT> if all the {@link IoFuture} have been completed, <code>FALSE</code> if
* @return <code>TRUE</code> if all the {@link IoFuture} have been completed, <code>FALSE</code> if
* at least one {@link IoFuture} has been interrupted
* @throws InterruptedException If one of the {@link IoFuture} is interrupted
*/
Expand All @@ -186,7 +186,7 @@ public static boolean await(Iterable<? extends IoFuture> futures, long timeoutMi
* @param futures The {@link IoFuture}s we are waiting on
* @param timeout The maximum time we wait for the {@link IoFuture}s to complete
* @param unit The Time unit to use for the timeout
* @return <code>TRUE</TT> if all the {@link IoFuture} have been completed, <code>FALSE</code> if
* @return <code>TRUE</code> if all the {@link IoFuture} have been completed, <code>FALSE</code> if
* at least one {@link IoFuture} has been interrupted
*/
public static boolean awaitUninterruptibly(Iterable<? extends IoFuture> futures, long timeout, TimeUnit unit) {
Expand All @@ -198,7 +198,7 @@ public static boolean awaitUninterruptibly(Iterable<? extends IoFuture> futures,
*
* @param futures The {@link IoFuture}s we are waiting on
* @param timeoutMillis The maximum milliseconds we wait for the {@link IoFuture}s to complete
* @return <code>TRUE</TT> if all the {@link IoFuture} have been completed, <code>FALSE</code> if
* @return <code>TRUE</code> if all the {@link IoFuture} have been completed, <code>FALSE</code> if
* at least one {@link IoFuture} has been interrupted
*/
public static boolean awaitUninterruptibly(Iterable<? extends IoFuture> futures, long timeoutMillis) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,14 @@ public final int getRemaining() {
}

/**
* @return <TT>TRUE</TT> if there are some more bytes
* @return <code>TRUE</code> if there are some more bytes
*/
public final boolean hasRemaining() {
return cursor.hasRemaining();
}

/**
* @return The used byte order (little of big indian)
* @return The used byte order (little of big endian)
*/
public ByteOrder order() {
return cba.order();
Expand Down

0 comments on commit 9f4c284

Please sign in to comment.