You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2018/11/23 12:10:11 UTC

qpid-jms git commit: QPIDJMS-436: fix javadoc errors on Java 11

Repository: qpid-jms
Updated Branches:
  refs/heads/master 024acccea -> 421582d1e


QPIDJMS-436: fix javadoc errors on Java 11


Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/421582d1
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/421582d1
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/421582d1

Branch: refs/heads/master
Commit: 421582d1ec848381e161c791398495796552fc89
Parents: 024accc
Author: Robbie Gemmell <ro...@apache.org>
Authored: Fri Nov 23 12:09:38 2018 +0000
Committer: Robbie Gemmell <ro...@apache.org>
Committed: Fri Nov 23 12:09:38 2018 +0000

----------------------------------------------------------------------
 .../main/java/org/apache/qpid/jms/selector/filter/package.html | 2 +-
 .../qpid/jms/util/ClassLoadingAwareObjectInputStream.java      | 2 +-
 .../main/java/org/apache/qpid/jms/util/InetAddressUtil.java    | 4 ++--
 .../src/main/java/org/apache/qpid/jms/util/LRUCache.java       | 6 +++---
 .../main/java/org/apache/qpid/jms/util/ThreadPoolUtils.java    | 4 ++--
 5 files changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/421582d1/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/package.html
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/package.html b/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/package.html
index 836ddd9..1daaddd 100755
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/package.html
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/package.html
@@ -20,7 +20,7 @@
 <body>
 
 <p>
-	Filter implementations for wildcards & JMS selectors
+	Filter implementation for JMS selectors
 </p>
 
 </body>

http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/421582d1/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ClassLoadingAwareObjectInputStream.java
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ClassLoadingAwareObjectInputStream.java b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ClassLoadingAwareObjectInputStream.java
index 21562a8..c16c9a6 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ClassLoadingAwareObjectInputStream.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ClassLoadingAwareObjectInputStream.java
@@ -143,7 +143,7 @@ public class ClassLoadingAwareObjectInputStream extends ObjectInputStream {
      *
      * @param name
      *        the name of the class to load
-     * @return the class or <tt>null</tt> if it could not be loaded
+     * @return the class or <code>null</code> if it could not be loaded
      */
     public static Class<?> loadSimpleType(String name) {
         if ("java.lang.byte[]".equals(name) || "byte[]".equals(name)) {

http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/421582d1/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/InetAddressUtil.java
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/InetAddressUtil.java b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/InetAddressUtil.java
index 8d73306..ea25168 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/InetAddressUtil.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/InetAddressUtil.java
@@ -23,7 +23,7 @@ public class InetAddressUtil {
 
     /**
      * When using the {@link java.net.InetAddress#getHostName()} method in an
-     * environment where neither a proper DNS lookup nor an <tt>/etc/hosts</tt>
+     * environment where neither a proper DNS lookup nor an <code>/etc/hosts</code>
      * entry exists for a given host, the following exception will be thrown:
      * <code>
      * java.net.UnknownHostException: &lt;hostname&gt;: &lt;hostname&gt;
@@ -33,7 +33,7 @@ public class InetAddressUtil {
      * Instead of just throwing an UnknownHostException and giving up, this
      * method grabs a suitable hostname from the exception and prevents the
      * exception from being thrown. If a suitable hostname cannot be acquired
-     * from the exception, only then is the <tt>UnknownHostException</tt> thrown.
+     * from the exception, only then is the <code>UnknownHostException</code> thrown.
      *
      * @return The hostname
      *

http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/421582d1/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/LRUCache.java
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/LRUCache.java b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/LRUCache.java
index 9fc7cb5..d9b496f 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/LRUCache.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/LRUCache.java
@@ -48,7 +48,7 @@ public class LRUCache<K, V> extends LinkedHashMap<K, V> {
     }
 
     /**
-     * Constructs an empty <tt>LRUCache</tt> instance with the specified
+     * Constructs an empty <code>LRUCache</code> instance with the specified
      * initial capacity, maximumCacheSize,load factor and ordering mode.
      *
      * @param initialCapacity
@@ -57,8 +57,8 @@ public class LRUCache<K, V> extends LinkedHashMap<K, V> {
      *      The maximum number of elements to keep in the Cache before eviction starts.
      * @param loadFactor
      *      The load factor to configure on the underlying map.
-     * @param accessOrder the ordering mode - <tt>true</tt> for access-order,
-     *                <tt>false</tt> for insertion-order.
+     * @param accessOrder the ordering mode - <code>true</code> for access-order,
+     *                <code>false</code> for insertion-order.
      *
      * @throws IllegalArgumentException if the initial capacity is negative or
      *                 the load factor is non-positive.

http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/421582d1/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ThreadPoolUtils.java
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ThreadPoolUtils.java b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ThreadPoolUtils.java
index dabdf79..bb688a3 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ThreadPoolUtils.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/ThreadPoolUtils.java
@@ -97,7 +97,7 @@ public final class ThreadPoolUtils {
      * Will try to perform an orderly shutdown by giving the running threads time to complete
      * tasks, before going more aggressively by doing a
      * {@link #shutdownNow(java.util.concurrent.ExecutorService)} which forces a shutdown. The
-     * parameter <tt>shutdownAwaitTermination</tt> is used as timeout value waiting for orderly
+     * parameter <code>shutdownAwaitTermination</code> is used as timeout value waiting for orderly
      * shutdown to complete normally, before going aggressively.
      *
      * @param executorService
@@ -170,7 +170,7 @@ public final class ThreadPoolUtils {
      * @param shutdownAwaitTermination
      *        time in millis to use as timeout
      *
-     * @return <tt>true</tt> if the pool is terminated, or <tt>false</tt> if we timed out
+     * @return <code>true</code> if the pool is terminated, or <code>false</code> if we timed out
      *
      * @throws InterruptedException
      *         is thrown if we are interrupted during the waiting


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org