summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/funcutils/SetUtils.java
diff options
context:
space:
mode:
authorBen Culkin <scorpress@gmail.com>2021-03-13 10:13:12 -0500
committerBen Culkin <scorpress@gmail.com>2021-03-13 10:13:12 -0500
commit58e0022923d573782f5db1f22a1713a98712e37b (patch)
treeb6f1543d41c22e4d79c6f62ab7246474f7d4bf8e /base/src/main/java/bjc/utils/funcutils/SetUtils.java
parent89ecc3004f9f513d249d9df9b2e48e08fd56f315 (diff)
Update documentation
Diffstat (limited to 'base/src/main/java/bjc/utils/funcutils/SetUtils.java')
-rw-r--r--base/src/main/java/bjc/utils/funcutils/SetUtils.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/src/main/java/bjc/utils/funcutils/SetUtils.java b/base/src/main/java/bjc/utils/funcutils/SetUtils.java
index babdb8e..b721d10 100644
--- a/base/src/main/java/bjc/utils/funcutils/SetUtils.java
+++ b/base/src/main/java/bjc/utils/funcutils/SetUtils.java
@@ -15,8 +15,8 @@ public class SetUtils {
/**
* Create a power-set (set of all subsets) of a given set.
*
- * @param originalSet
- * The set to create a power-set of.
+ * @param <T> The type of elements contained in the set.
+ * @param originalSet The set to create a power-set of.
* @return The power-set of the set.
*/
public static <T> Set<Set<T>> powerSet(Set<T> originalSet) {
@@ -55,8 +55,8 @@ public class SetUtils {
/**
* Utility method for set construction.
*
- * @param elms
- * The elements to stick in the set.
+ * @param <T> The type of elements in the set.
+ * @param elms The elements to stick in the set.
* @return A set containing the specified elements.
*/
@SafeVarargs