You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/09/24 14:26:55 UTC

[commons-text] branch master updated: Remove unused import

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
     new 88ecce3b Remove unused import
88ecce3b is described below

commit 88ecce3bf50c4321e238f2e6cd534bda05e3dc14
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Sep 24 10:26:51 2022 -0400

    Remove unused import
---
 .../java/org/apache/commons/text/similarity/JaroWinklerDistance.java    | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java b/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java
index 85d0b3f7..1d13c280 100644
--- a/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java
+++ b/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java
@@ -16,8 +16,6 @@
  */
 package org.apache.commons.text.similarity;
 
-import java.util.Arrays;
-
 /**
  * Measures the Jaro-Winkler distance of two character sequences.
  * It is the complementary of Jaro-Winkler similarity.