From 3849831374f3aec3f0fbfdb87b76c4e9f1faa59d Mon Sep 17 00:00:00 2001
From: Marcos Tischer Vallim
Date: Fri, 1 May 2026 16:15:03 -0300
Subject: [PATCH] docs: improve documentation
Signed-off-by: Marcos Tischer Vallim
---
.../br/com/fluentvalidator/predicate/CollectionPredicate.java | 3 ---
.../java/br/com/fluentvalidator/predicate/MapPredicate.java | 3 ---
2 files changed, 6 deletions(-)
diff --git a/src/main/java/br/com/fluentvalidator/predicate/CollectionPredicate.java b/src/main/java/br/com/fluentvalidator/predicate/CollectionPredicate.java
index 2397e8f..68b0737 100644
--- a/src/main/java/br/com/fluentvalidator/predicate/CollectionPredicate.java
+++ b/src/main/java/br/com/fluentvalidator/predicate/CollectionPredicate.java
@@ -35,9 +35,6 @@
* for various collection operations, including empty checks, containment checks,
* and size comparisons.
*
- *
- * @param the type of keys in the map (unused, kept for consistency)
- * @param the type of values in the map (unused, kept for consistency)
*/
public final class CollectionPredicate {
diff --git a/src/main/java/br/com/fluentvalidator/predicate/MapPredicate.java b/src/main/java/br/com/fluentvalidator/predicate/MapPredicate.java
index b1a75c1..b5073cb 100644
--- a/src/main/java/br/com/fluentvalidator/predicate/MapPredicate.java
+++ b/src/main/java/br/com/fluentvalidator/predicate/MapPredicate.java
@@ -25,9 +25,6 @@
/**
* Utility class that provides predicates for testing {@link Map} objects.
- *
- * @param the type of keys in the map
- * @param the type of values in the map
*/
public final class MapPredicate {