Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit f612b40

Browse files
author
Dan Richelson
committed
Update documentation. Fix javadoc.
1 parent c8c408a commit f612b40

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Quick setup
1111
<dependency>
1212
<groupId>com.launchdarkly</groupId>
1313
<artifactId>launchdarkly-client</artifactId>
14-
<version>0.7.0</version>
14+
<version>1.0.1</version>
1515
</dependency>
1616

1717
1. Import the LaunchDarkly package:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ artifacts {
7878
}
7979

8080
githubPages {
81-
repoUri = 'git@github.com:launchdarkly/java-client.git'
81+
repoUri = 'https://github.com/launchdarkly/java-client.git'
8282
pages {
8383
from javadoc
8484
}

src/main/java/com/launchdarkly/client/LDConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,8 @@ public Builder offline(boolean offline) {
316316
}
317317

318318
/**
319-
* Set the polling interval (when streaming is disabled). Values less than {@value #DEFAULT_POLLING_INTERVAL_MILLIS}
320-
* will be set to the default of {@value #DEFAULT_POLLING_INTERVAL_MILLIS}
319+
* Set the polling interval (when streaming is disabled). Values less than the default of 1000
320+
* will be set to 1000.
321321
*
322322
* @param pollingIntervalMillis rule update polling interval in milliseconds.
323323
* @return the builder
@@ -330,7 +330,7 @@ public Builder pollingIntervalMillis(long pollingIntervalMillis) {
330330
/**
331331
* Set how long the constructor will block awaiting a successful connection to LaunchDarkly.
332332
* Setting this to 0 will not block and cause the constructor to return immediately.
333-
* Default value: {@value #DEFAULT_START_WAIT_MILLIS}
333+
* Default value: 5000
334334
*
335335
*
336336
* @param startWaitMillis milliseconds to wait

0 commit comments

Comments
 (0)