Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Turner2017-12-11 20:20:25 +0000
committerDavid Pursehouse2017-12-12 04:25:05 +0000
commit623851ec16ab3dc590dd2fb6a6197285dee9c6f7 (patch)
tree08a6b166d3946130deedd32b99fd26e744101a70 /org.eclipse.jgit/src/org/eclipse/jgit/api
parent9d79dc95e2b42fd604ee7464c3a7f4b8edbcce6e (diff)
downloadjgit-623851ec16ab3dc590dd2fb6a6197285dee9c6f7.tar.gz
jgit-623851ec16ab3dc590dd2fb6a6197285dee9c6f7.tar.xz
jgit-623851ec16ab3dc590dd2fb6a6197285dee9c6f7.zip
TransportCommand#setTimeout: Specify units for timeout in Javadoc
Change-Id: Iadf0e2c6483794e43a5326f6be6bb34c19b00564 Signed-off-by: David Turner <dturner@twosigma.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/api')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java
index 3d2e46b26e..1541df5d39 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java
@@ -95,7 +95,7 @@ public abstract class TransportCommand<C extends GitCommand, T> extends
/**
* @param timeout
- * the timeout used for the transport step
+ * the timeout (in seconds) used for the transport step
* @return {@code this}
*/
public C setTimeout(int timeout) {

Back to the top