Skip to content

Commit bc7a21e

Browse files
committed
Adding javadoc.
1 parent c4b8ebb commit bc7a21e

File tree

1 file changed

+3
-3
lines changed
  • graalpython/org.graalvm.python.embedding.utils/src/org/graalvm/python/embedding/utils/jbang

1 file changed

+3
-3
lines changed

graalpython/org.graalvm.python.embedding.utils/src/org/graalvm/python/embedding/utils/jbang/JBangIntegration.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,9 @@ private static void runProcess(ProcessBuilder pb) {
412412
/**
413413
* Ensures that the proxy url has a protocol.
414414
*
415-
* @param proxyAddress
416-
* @param protocol
417-
* @return
415+
* @param proxyAddress proxy server address
416+
* @param protocol usually http or https
417+
* @return String representation of url of the proxy
418418
*/
419419
private static String fixProtocol(String proxyAddress, String protocol) {
420420
return proxyAddress.startsWith(protocol) ? proxyAddress : protocol + "://" + proxyAddress;

0 commit comments

Comments
 (0)