Skip to content

Commit

Permalink
fix build javadocs failed
Browse files Browse the repository at this point in the history
  • Loading branch information
lxhoan committed May 3, 2018
1 parent da2e1b9 commit f91bd4d
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions src/main/java/org/influxdb/InfluxDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,18 @@ public void write(final String database, final String retentionPolicy,
/**
* Write a set of Points to the influxdb database with the string records.
*
* {@linkplain "https://github.com/influxdb/influxdb/pull/2696"}
* @see <a href="https://github.com/influxdb/influxdb/pull/2696">2696</a>
*
* @param database
* the name of the database to write
* @param retentionPolicy
* the retentionPolicy to use
* @param consistency
* the ConsistencyLevel to use
* @param precision
* the time precision to use
* @param records
* the points in the correct lineprotocol.
*/
public void write(final String database, final String retentionPolicy,
final ConsistencyLevel consistency, final TimeUnit precision, final String records);
Expand All @@ -242,9 +251,18 @@ public void write(final String database, final String retentionPolicy,
/**
* Write a set of Points to the influxdb database with the list of string records.
*
* {@linkplain "https://github.com/influxdb/influxdb/pull/2696"}
* @see <a href="https://github.com/influxdb/influxdb/pull/2696">2696</a>
*
* @param database
* the name of the database to write
* @param retentionPolicy
* the retentionPolicy to use
* @param consistency
* the ConsistencyLevel to use
* @param precision
* the time precision to use
* @param records
* the List of points in the correct lineprotocol.
*/
public void write(final String database, final String retentionPolicy,
final ConsistencyLevel consistency, final TimeUnit precision, final List<String> records);
Expand Down

0 comments on commit f91bd4d

Please sign in to comment.