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-exec.git
The following commit(s) were added to refs/heads/master by this push:
new 084ba652 Javadoc and comments: Use an HTTPS URL
084ba652 is described below
commit 084ba652702aea9810d8e31f6d059d13e742769f
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 14 11:07:04 2024 -0500
Javadoc and comments: Use an HTTPS URL
---
src/main/java/org/apache/commons/exec/DefaultExecutor.java | 2 +-
.../java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java | 2 +-
src/test/java/org/apache/commons/exec/issues/Exec36Test.java | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/main/java/org/apache/commons/exec/DefaultExecutor.java
b/src/main/java/org/apache/commons/exec/DefaultExecutor.java
index ce06a247..c94dd2ff 100644
--- a/src/main/java/org/apache/commons/exec/DefaultExecutor.java
+++ b/src/main/java/org/apache/commons/exec/DefaultExecutor.java
@@ -324,7 +324,7 @@ public class DefaultExecutor implements Executor {
} catch (final InterruptedException e) {
process.destroy();
} finally {
- // see http://bugs.sun.com/view_bug.do?bug_id=6420270
+ // see https://bugs.sun.com/view_bug.do?bug_id=6420270
// see https://issues.apache.org/jira/browse/EXEC-46
// Process.waitFor should clear interrupt status when throwing
InterruptedException
// but we have to do that manually
diff --git
a/src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java
b/src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java
index 8a8cafbb..a7c5c9ca 100644
--- a/src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java
+++ b/src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java
@@ -141,7 +141,7 @@ public class ShutdownHookProcessDestroyer implements
ProcessDestroyer, Runnable
if (!removed) {
System.err.println("Could not remove shutdown hook");
}
- // start the hook thread, a unstarted thread may not be eligible
for garbage collection Cf.: http://developer.java.sun.com/developer/
+ // start the hook thread, a unstarted thread may not be eligible
for garbage collection Cf.: https://developer.java.sun.com/developer/
// bugParade/bugs/4533087.html
destroyProcessThread.setShouldDestroy(false);
diff --git a/src/test/java/org/apache/commons/exec/issues/Exec36Test.java
b/src/test/java/org/apache/commons/exec/issues/Exec36Test.java
index 1a43100e..d7fcb91a 100644
--- a/src/test/java/org/apache/commons/exec/issues/Exec36Test.java
+++ b/src/test/java/org/apache/commons/exec/issues/Exec36Test.java
@@ -48,7 +48,7 @@ public class Exec36Test {
private ByteArrayOutputStream baos;
/**
- * Some complex real-life command line from
http://blogs.msdn.com/b/astebner/archive/2005/12/13/503471.aspx
+ * Some complex real-life command line from
https://blogs.msdn.com/b/astebner/archive/2005/12/13/503471.aspx
*/
@Test
@Disabled
@@ -70,7 +70,7 @@ public class Exec36Test {
}
/**
- * Some complex real-life command line from
http://blogs.msdn.com/b/astebner/archive/2005/12/13/503471.aspx
+ * Some complex real-life command line from
https://blogs.msdn.com/b/astebner/archive/2005/12/13/503471.aspx
*/
@Test
@Disabled
@@ -157,7 +157,7 @@ public class Exec36Test {
}
/**
- * Test a complex real example found at
http://blogs.msdn.com/b/astebner/archive/2005/12/13/503471.aspx
+ * Test a complex real example found at
https://blogs.msdn.com/b/astebner/archive/2005/12/13/503471.aspx
*
* The command line is so weird that it even falls apart under Windows
*