Skip to content

Commit 84d3ccb

Browse files
haydenbakerkstich
authored andcommitted
Update http links to https in smithy-utils javadocs
1 parent 697477f commit 84d3ccb

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

smithy-utils/src/main/java/software/amazon/smithy/utils/StringUtils.java

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ public static String repeat(final String str, final int repeat) {
637637
* </pre>
638638
*
639639
* <p>Note: this method does not support padding with
640-
* <a href="http://www.unicode.org/glossary/#supplementary_character">Unicode Supplementary Characters</a>
640+
* <a href="https://www.unicode.org/glossary/#supplementary_character">Unicode Supplementary Characters</a>
641641
* as they require a pair of {@code char}s to be represented.
642642
* If you are needing to support full I18N of your applications
643643
* consider using {@link #repeat(String, int)} instead.
@@ -1079,14 +1079,14 @@ public static String stripToEmpty(final String str) {
10791079
* <td>"Here is one line of\ntext that is going\nto be wrapped after\n20 columns."</td>
10801080
* </tr>
10811081
* <tr>
1082-
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
1082+
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
10831083
* <td>20</td>
1084-
* <td>"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apache.org"</td>
1084+
* <td>"Click here to jump\nto the commons\nwebsite -\nhttps://commons.apache.org"</td>
10851085
* </tr>
10861086
* <tr>
1087-
* <td>"Click here, http://commons.apache.org, to jump to the commons website"</td>
1087+
* <td>"Click here, https://commons.apache.org, to jump to the commons website"</td>
10881088
* <td>20</td>
1089-
* <td>"Click here,\nhttp://commons.apache.org,\nto jump to the\ncommons website"</td>
1089+
* <td>"Click here,\nhttps://commons.apache.org,\nto jump to the\ncommons website"</td>
10901090
* </tr>
10911091
* </table>
10921092
*
@@ -1154,18 +1154,18 @@ public static String wrap(final String str, final int wrapLength) {
11541154
* + systemNewLine + "to be wrapped after" + systemNewLine + "20 columns."</td>
11551155
* </tr>
11561156
* <tr>
1157-
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
1157+
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
11581158
* <td>20</td>
11591159
* <td>"\n"</td>
11601160
* <td>false</td>
1161-
* <td>"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apache.org"</td>
1161+
* <td>"Click here to jump\nto the commons\nwebsite -\nhttps://commons.apache.org"</td>
11621162
* </tr>
11631163
* <tr>
1164-
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
1164+
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
11651165
* <td>20</td>
11661166
* <td>"\n"</td>
11671167
* <td>true</td>
1168-
* <td>"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apach\ne.org"</td>
1168+
* <td>"Click here to jump\nto the commons\nwebsite -\nhttps://commons.apach\ne.org"</td>
11691169
* </tr>
11701170
* </table>
11711171
*
@@ -1245,20 +1245,20 @@ public static String wrap(
12451245
* + systemNewLine + "to be wrapped after" + systemNewLine + "20 columns."</td>
12461246
* </tr>
12471247
* <tr>
1248-
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
1248+
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
12491249
* <td>20</td>
12501250
* <td>"\n"</td>
12511251
* <td>false</td>
12521252
* <td>" "</td>
1253-
* <td>"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apache.org"</td>
1253+
* <td>"Click here to jump\nto the commons\nwebsite -\nhttps://commons.apache.org"</td>
12541254
* </tr>
12551255
* <tr>
1256-
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
1256+
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
12571257
* <td>20</td>
12581258
* <td>"\n"</td>
12591259
* <td>true</td>
12601260
* <td>" "</td>
1261-
* <td>"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apach\ne.org"</td>
1261+
* <td>"Click here to jump\nto the commons\nwebsite -\nhttps://commons.apach\ne.org"</td>
12621262
* </tr>
12631263
* <tr>
12641264
* <td>"flammable/inflammable"</td>
@@ -1435,8 +1435,8 @@ public static String escapeJavaString(Object object, String indent) {
14351435
* This implementation follows from Algorithms on Strings, Trees and
14361436
* Sequences by Dan Gusfield and Chas Emerick's implementation of the
14371437
* Levenshtein distance algorithm from <a
1438-
* href="http://www.merriampark.com/ld.htm"
1439-
* >http://www.merriampark.com/ld.htm</a>
1438+
* href="https://www.merriampark.com/ld.htm"
1439+
* >https://www.merriampark.com/ld.htm</a>
14401440
* </p>
14411441
*
14421442
* <pre>

0 commit comments

Comments
 (0)