Skip to content

Commit d311654

Browse files
committed
silent 3 javadoc warnings
1 parent 7c67599 commit d311654

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/main/java/org/influxdb/InfluxDB.java

+1
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ public void createRetentionPolicy(final String rpName, final String database, fi
438438
* @param rpName the name of the retentionPolicy(rp)
439439
* @param database the name of the database
440440
* @param duration the duration of the rp
441+
* @param shardDuration the shardDuration
441442
* @param replicationFactor the replicationFactor of the rp
442443
*/
443444
public void createRetentionPolicy(final String rpName, final String database, final String duration,

src/main/java/org/influxdb/impl/InfluxDBResultMapper.java

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ public class InfluxDBResultMapper {
7474
*
7575
* @param queryResult the InfluxDB result object
7676
* @param clazz the Class that will be used to hold your measurement data
77+
* @param <T> the target type
7778
* @return a {@link List} of objects from the same Class passed as parameter and sorted on the
7879
* same order as received from InfluxDB.
7980
* @throws InfluxDBMapperException If {@link QueryResult} parameter contain errors,

src/main/java/org/influxdb/impl/Preconditions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static void checkPositiveNumber(final Number number, final String name) t
4040
* Enforces that the duration is a valid influxDB duration.
4141
* @param duration the duration to test
4242
* @param name variable name for reporting
43-
* @throws IllegalArgumentException
43+
* @throws IllegalArgumentException if the given duration is not valid.
4444
*/
4545
public static void checkDuration(final String duration, final String name) throws IllegalArgumentException {
4646
if (!duration.matches("(\\d+[wdmhs])+")) {

0 commit comments

Comments
 (0)