From a6e20efe6282738c9eec63c2b58d31ac77a27a89 Mon Sep 17 00:00:00 2001
From: Gary Gregory
Date: Thu, 1 Sep 2022 13:43:34 -0400
Subject: [PATCH] Rename type parameter
---
.../org/apache/commons/collections4/trie/PatriciaTrie.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java b/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java
index a1c739139..8d2487d5f 100644
--- a/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java
+++ b/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java
@@ -55,14 +55,14 @@ import org.apache.commons.collections4.trie.analyzer.StringKeyAnalyzer;
* are suited only to variable length keys.
*
*
- * @param the type of the values in this map
+ * @param the type of the values in this map
*
* @see Radix Tree
* @see PATRICIA
* @see Crit-Bit Tree
* @since 4.0
*/
-public class PatriciaTrie extends AbstractPatriciaTrie {
+public class PatriciaTrie extends AbstractPatriciaTrie {
private static final long serialVersionUID = 4446367780901817838L;
@@ -70,7 +70,7 @@ public class PatriciaTrie extends AbstractPatriciaTrie {
super(new StringKeyAnalyzer());
}
- public PatriciaTrie(final Map extends String, ? extends E> m) {
+ public PatriciaTrie(final Map extends String, ? extends V> m) {
super(new StringKeyAnalyzer(), m);
}