You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/text/similarity/LevenshteinDetailedDistance.java
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ public static LevenshteinDetailedDistance getDefaultInstance() {
132
132
*
133
133
* <p>
134
134
* This implementation follows from Algorithms on Strings, Trees and Sequences by Dan Gusfield and Chas Emerick's implementation of the Levenshtein distance
135
-
* algorithm from <a href="http://www.merriampark.com/ld.htm" >http://www.merriampark.com/ld.htm</a>
135
+
* algorithm from <a href="https://www.merriampark.com/ld.htm" >http://www.merriampark.com/ld.htm</a>
* Chas Emerick has written an implementation in Java, which avoids an OutOfMemoryError which can occur when my Java implementation is used with very large
282
282
* strings.<br>
283
283
* This implementation of the Levenshtein distance algorithm is from
* Chas Emerick has written an implementation in Java, which avoids an OutOfMemoryError which can occur when my Java implementation is used with very large
425
425
* strings.<br>
426
426
* This implementation of the Levenshtein distance algorithm is from
* Chas Emerick has written an implementation in Java, which avoids an OutOfMemoryError which can occur when my Java implementation is used with very large
468
468
* strings.<br>
469
469
* This implementation of the Levenshtein distance algorithm is from
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/text/similarity/LevenshteinDistance.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ public static LevenshteinDistance getDefaultInstance() {
55
55
*
56
56
* <p>
57
57
* This implementation follows from Algorithms on Strings, Trees and Sequences by Dan Gusfield and Chas Emerick's implementation of the Levenshtein distance
58
-
* algorithm from <a href="http://www.merriampark.com/ld.htm">http://www.merriampark.com/ld.htm</a>
58
+
* algorithm from <a href="https://www.merriampark.com/ld.htm">http://www.merriampark.com/ld.htm</a>
59
59
* </p>
60
60
*
61
61
* <pre>
@@ -324,14 +324,14 @@ public LevenshteinDistance(final Integer threshold) {
324
324
*
325
325
* <p>
326
326
* The previous implementation of the Levenshtein distance algorithm was from
* Chas Emerick has written an implementation in Java, which avoids an OutOfMemoryError which can occur when my Java implementation is used with very large
332
332
* strings.<br>
333
333
* This implementation of the Levenshtein distance algorithm is from
Copy file name to clipboardExpand all lines: src/site/xdoc/userguide.xml
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -88,24 +88,24 @@ limitations under the License.
88
88
</pre>
89
89
</p>
90
90
<p>
91
-
For details see <ahref="http://commons.apache.org/proper/commons-text/apidocs/org/apache/commons/text/StringSubstitutor.html">StringSubstitutor</a>.
91
+
For details see <ahref="https://commons.apache.org/proper/commons-text/apidocs/org/apache/commons/text/StringSubstitutor.html">StringSubstitutor</a>.
92
92
</p>
93
93
<p>
94
-
Use a <ahref="http://commons.apache.org/proper/commons-text/apidocs/org/apache/commons/text/io/StringSubstitutorReader.html">StringSubstitutorReader</a>
94
+
Use a <ahref="https://commons.apache.org/proper/commons-text/apidocs/org/apache/commons/text/io/StringSubstitutorReader.html">StringSubstitutorReader</a>
95
95
to avoid reading a whole file into memory as a <code>String</code> to perform string substitution, for example, when a Servlet filters a file to a client.
96
96
</p>
97
97
<p>
98
98
To build a default full-featured substitutor, use:
0 commit comments