[java-support] branch master updated: JPAR-115 - Javadoc fixes

Ian Young ian at iay.org.uk
Tue Nov 27 11:41:23 EST 2018


This is an automated email from the git hooks/post-receive script.

iay pushed a commit to branch master
in repository java-support.

View the commit online:
http://git.shibboleth.net/view/?p=java-support.git;a=commit;h=8abb86d2c5552d05149dba01f2b72c79fc7fd3ed

The following commit(s) were added to refs/heads/master by this push:
       new  8abb86d   JPAR-115 - Javadoc fixes
8abb86d is described below

commit 8abb86d2c5552d05149dba01f2b72c79fc7fd3ed
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Tue Nov 27 16:41:17 2018 +0000

    JPAR-115 - Javadoc fixes
---
 .../utilities/java/support/collection/ClassIndexedSet.java     |  2 +-
 .../utilities/java/support/collection/ValueTypeIndexedMap.java |  2 +-
 .../net/shibboleth/utilities/java/support/net/URISupport.java  | 10 +++++-----
 .../java/support/resolver/CriterionPredicateRegistry.java      |  4 ++--
 .../shibboleth/utilities/java/support/xml/BasicParserPool.java |  2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/main/java/net/shibboleth/utilities/java/support/collection/ClassIndexedSet.java b/src/main/java/net/shibboleth/utilities/java/support/collection/ClassIndexedSet.java
index 0eb1ed3..7b3fbdd 100644
--- a/src/main/java/net/shibboleth/utilities/java/support/collection/ClassIndexedSet.java
+++ b/src/main/java/net/shibboleth/utilities/java/support/collection/ClassIndexedSet.java
@@ -39,7 +39,7 @@ public class ClassIndexedSet<T> extends AbstractSet<T> implements Set<T> {
     /** Storage for set members. */
     private final HashSet<T> set;
 
-    /** Storage for index of class -> member. */
+    /** Storage for index of class -> member. */
     private final HashMap<Class<? extends T>, T> index;
 
     /**
diff --git a/src/main/java/net/shibboleth/utilities/java/support/collection/ValueTypeIndexedMap.java b/src/main/java/net/shibboleth/utilities/java/support/collection/ValueTypeIndexedMap.java
index 7fbe8f2..dd484a8 100644
--- a/src/main/java/net/shibboleth/utilities/java/support/collection/ValueTypeIndexedMap.java
+++ b/src/main/java/net/shibboleth/utilities/java/support/collection/ValueTypeIndexedMap.java
@@ -38,7 +38,7 @@ public class ValueTypeIndexedMap<KeyType, ValueType> implements Map<KeyType, Val
     /** Class to represent null values. */
     private static class NullValue {}
 
-    /** Storage for index of class -> members. */
+    /** Storage for index of class -> members. */
     private Map<Class<?>, Map<KeyType, ValueType>> index;
 
     /** Storage for map members. */
diff --git a/src/main/java/net/shibboleth/utilities/java/support/net/URISupport.java b/src/main/java/net/shibboleth/utilities/java/support/net/URISupport.java
index 5b65c7f..ca3ba49 100644
--- a/src/main/java/net/shibboleth/utilities/java/support/net/URISupport.java
+++ b/src/main/java/net/shibboleth/utilities/java/support/net/URISupport.java
@@ -239,7 +239,7 @@ public final class URISupport {
      * 
      * @param parameters collection of parameters from which to build the corresponding, may be null or empty
      * 
-     * @return a non-null map of query parameter name-> value. Keys will be non-null. Values may be null.
+     * @return a non-null map of query parameter name-> value. Keys will be non-null. Values may be null.
      */
     @Nonnull public static Map<String,String> buildQueryMap(@Nullable final List<Pair<String, String>> parameters) {
         if (parameters == null || parameters.size() == 0) {
@@ -258,7 +258,7 @@ public final class URISupport {
 
     /**
      * Get the first raw (i.e.RFC-3968 encoded) query string component with the specified parameter name. This method
-     * assumes the common query string format of one or more 'paramName=paramValue' pairs separate by '&'.
+     * assumes the common query string format of one or more 'paramName=paramValue' pairs separated by '&'.
      * 
      * The component will be returned as a string in the form 'paramName=paramValue' (minus the quotes).
      * 
@@ -288,9 +288,9 @@ public final class URISupport {
 
     /**
      * Parses a RFC-3968 encoded query string in to a set of name/value pairs. This method assumes the common query
-     * string format of one or more 'paramName=paramValue' pairs separate by '&'. Both parameter names and values will
-     * be URL decoded. Parameters without values will be represented in the returned map as a key associated with the
-     * value <code>null</code>.
+     * string format of one or more 'paramName=paramValue' pairs separate by '&'. Both parameter names and values
+     * will be URL decoded. Parameters without values will be represented in the returned map as a key associated with
+     * the value <code>null</code>.
      * 
      * @param queryString URL encoded query string
      * 
diff --git a/src/main/java/net/shibboleth/utilities/java/support/resolver/CriterionPredicateRegistry.java b/src/main/java/net/shibboleth/utilities/java/support/resolver/CriterionPredicateRegistry.java
index 493d3ad..17faf35 100644
--- a/src/main/java/net/shibboleth/utilities/java/support/resolver/CriterionPredicateRegistry.java
+++ b/src/main/java/net/shibboleth/utilities/java/support/resolver/CriterionPredicateRegistry.java
@@ -148,7 +148,7 @@ public class CriterionPredicateRegistry<T> {
 
 //CheckStyle: ReturnCount OFF
     /**
-     * Load criterion -> predicate mappings from a classpath resource.
+     * Load criterion -> predicate mappings from a classpath resource.
      * 
      * @param classpathResource the classpath resource path from which to load mapping properites
      */
@@ -171,7 +171,7 @@ public class CriterionPredicateRegistry<T> {
   //CheckStyle: ReturnCount ON
 
     /**
-     * Load a set of criterion -> predicate mappings from the supplied properties set.
+     * Load a set of criterion -> predicate mappings from the supplied properties set.
      * 
      * @param mappings properties set where the key is the criterion class name, the value is the predicate class name
      */
diff --git a/src/main/java/net/shibboleth/utilities/java/support/xml/BasicParserPool.java b/src/main/java/net/shibboleth/utilities/java/support/xml/BasicParserPool.java
index 41c7ffd..6dec96b 100644
--- a/src/main/java/net/shibboleth/utilities/java/support/xml/BasicParserPool.java
+++ b/src/main/java/net/shibboleth/utilities/java/support/xml/BasicParserPool.java
@@ -285,7 +285,7 @@ public class BasicParserPool extends AbstractInitializableComponent implements P
      * Set the name of the builder attribute that controls the use of an XMLSecurityManager.
      * 
      * <p>If set, this allows the pool to interrogate the factory to determine whether a
-     * security manager is installed and log its class.<.p>
+     * security manager is installed and log its class.</p>
      * 
      * @param name name of attribute
      */

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list