Skip to content

Commit

Permalink
Javadoc and comments: Use an HTTPS URL
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 14, 2024
1 parent 6f005dc commit 9355d81
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private static int read(final StringBuilder strb, final CharSequence str, final
strb.append('\\').append(c);
} else {
switch (c) {
// http://es5.github.io/x7.html#x7.8.4
// https://es5.github.io/x7.html#x7.8.4
case 'b':
strb.append('\b');
break; // backspace \u0008
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* class {@link JexlScriptObject} for access to utility methods and variables.
* </p>
* See
* <a href="http://java.sun.com/javase/6/docs/api/javax/script/package-summary.html">Java Scripting API</a>
* <a href="https://java.sun.com/javase/6/docs/api/javax/script/package-summary.html">Java Scripting API</a>
* Javadoc.
*
* @since 2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* </p>
* <p>
* See
* <a href="http://java.sun.com/javase/6/docs/api/javax/script/package-summary.html">Java Scripting API</a>
* <a href="https://java.sun.com/javase/6/docs/api/javax/script/package-summary.html">Java Scripting API</a>
* Javadoc.
*
* @since 2.0
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/apache/commons/jexl3/JexlTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public void testCalculations() throws Exception {
}

/**
* Attempts to recreate bug http://jira.werken.com/ViewIssue.jspa?key=JELLY-8
* Attempts to recreate bug https://jira.werken.com/ViewIssue.jspa?key=JELLY-8
*/
@Test
public void testCharAtBug() throws Exception {
Expand Down

0 comments on commit 9355d81

Please sign in to comment.