summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/funcutils/ListUtils.java
diff options
context:
space:
mode:
authorEVE <EVE@EVE-PC>2017-03-15 19:06:48 -0400
committerEVE <EVE@EVE-PC>2017-03-15 19:06:48 -0400
commit72e8de605598f62efbd63c17897e80cec181ff2b (patch)
tree7925a4fba447f213bc69bb14a56848e047f21239 /BJC-Utils2/src/main/java/bjc/utils/funcutils/ListUtils.java
parent9201148259345c3a48bf2b46cd9badddf44a77e9 (diff)
Remove old splitter code, and swap naming to match.
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcutils/ListUtils.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/funcutils/ListUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcutils/ListUtils.java b/BJC-Utils2/src/main/java/bjc/utils/funcutils/ListUtils.java
index c231767..f55eb36 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/funcutils/ListUtils.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/funcutils/ListUtils.java
@@ -80,7 +80,7 @@ public class ListUtils {
* The affixes to remove
* @return The tokens that have been deaffixed
*
- * @deprecated Replaced by NeoTokenSplitter.
+ * @deprecated Replaced by TokenSplitter.
*/
@Deprecated
public static IList<String> deAffixTokens(IList<String> input, Deque<IPair<String, String>> operators) {
@@ -301,7 +301,7 @@ public class ListUtils {
* those operators
* @return A list of tokens split on all the operators
*
- * @deprecated Use NeoTokenSplitter now
+ * @deprecated Use TokenSplitter now
*/
@Deprecated
public static IList<String> splitTokens(IList<String> input, Deque<IPair<String, String>> operators) {