@@ -81,8 +81,8 @@ public interface InfluxDBClient extends AutoCloseable {
8181 * by NanosecondConverter helper class. <br>
8282 * Warning: If you try to write ONLY ONE Point to Influxdb, but that Point has fields with null values,
8383 * then these fields will NOT be written to Influxdb.
84- * In the following queries If you explicitly query these null fields like this: "Select normalField, nullField from my_table"
85- * error will be thrown.
84+ * In the following queries If you explicitly query these null fields like this:
85+ * "Select normalField, nullField from my_table" error will be thrown.
8686 */
8787 void writePoint (@ Nullable final Point point );
8888
@@ -98,8 +98,8 @@ public interface InfluxDBClient extends AutoCloseable {
9898 * by NanosecondConverter helper class. <br>
9999 * Warning: If you try to write ONLY ONE Point to Influxdb, but that Point has fields with null values,
100100 * then these fields will NOT be written to Influxdb.
101- * In the following queries If you explicitly query these null fields like this: "Select normalField, nullField from my_table"
102- * error will be thrown.
101+ * In the following queries If you explicitly query these null fields like this:
102+ * "Select normalField, nullField from my_table" error will be thrown.
103103 */
104104 void writePoint (@ Nullable final Point point , @ Nonnull final WriteOptions options );
105105
@@ -114,8 +114,8 @@ public interface InfluxDBClient extends AutoCloseable {
114114 * by NanosecondConverter helper class. <br>
115115 * Warning: If you try to write ONLY ONE Point to Influxdb, but that Point has fields with null values,
116116 * then these fields will NOT be written to Influxdb.
117- * In the following queries If you explicitly query these null fields like this: "Select normalField, nullField from my_table"
118- * error will be thrown.
117+ * In the following queries If you explicitly query these null fields like this:
118+ * "Select normalField, nullField from my_table" error will be thrown.
119119 */
120120 void writePoints (@ Nonnull final List <Point > points );
121121
@@ -131,8 +131,8 @@ public interface InfluxDBClient extends AutoCloseable {
131131 * by NanosecondConverter helper class. <br>
132132 * Warning: If you try to write ONLY ONE Point to Influxdb, but that Point has fields with null values,
133133 * then these fields will NOT be written to Influxdb.
134- * In the following queries If you explicitly query these null fields like this: "Select normalField, nullField from my_table"
135- * error will be thrown.
134+ * In the following queries If you explicitly query these null fields like this:
135+ * "Select normalField, nullField from my_table" error will be thrown.
136136 */
137137 void writePoints (@ Nonnull final List <Point > points , @ Nonnull final WriteOptions options );
138138
0 commit comments