You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2022/07/20 08:05:28 UTC

[mina] branch 2.2.X updated: Replaced by in javadoc

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

elecharny pushed a commit to branch 2.2.X
in repository https://gitbox.apache.org/repos/asf/mina.git


The following commit(s) were added to refs/heads/2.2.X by this push:
     new 9f4c28483 Replaced </?TT> by </?code> in javadoc
9f4c28483 is described below

commit 9f4c28483110724de3381819d55ee889b8ae2fee
Author: emmanuel lecharny <el...@apache.org>
AuthorDate: Wed Jul 20 10:05:20 2022 +0200

    Replaced </?TT> by </?code> in javadoc
---
 mina-core/src/main/java/org/apache/mina/core/IoUtil.java          | 8 ++++----
 .../mina/util/byteaccess/CompositeByteArrayRelativeBase.java      | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/mina-core/src/main/java/org/apache/mina/core/IoUtil.java b/mina-core/src/main/java/org/apache/mina/core/IoUtil.java
index f76a77961..32b06e50f 100644
--- a/mina-core/src/main/java/org/apache/mina/core/IoUtil.java
+++ b/mina-core/src/main/java/org/apache/mina/core/IoUtil.java
@@ -158,7 +158,7 @@ public final class IoUtil {
      * @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
      */
@@ -172,7 +172,7 @@ public final class IoUtil {
      *  
      * @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
      */
@@ -186,7 +186,7 @@ public final class IoUtil {
      * @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) {
@@ -198,7 +198,7 @@ public final class IoUtil {
      *  
      * @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) {
diff --git a/mina-core/src/main/java/org/apache/mina/util/byteaccess/CompositeByteArrayRelativeBase.java b/mina-core/src/main/java/org/apache/mina/util/byteaccess/CompositeByteArrayRelativeBase.java
index 634984ffe..10b27b862 100644
--- a/mina-core/src/main/java/org/apache/mina/util/byteaccess/CompositeByteArrayRelativeBase.java
+++ b/mina-core/src/main/java/org/apache/mina/util/byteaccess/CompositeByteArrayRelativeBase.java
@@ -99,14 +99,14 @@ abstract class CompositeByteArrayRelativeBase {
     }
 
     /**
-     * @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();