File tree 1 file changed +11
-11
lines changed
src/main/java/org/influxdb/dto
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -253,17 +253,17 @@ public int hashCode() {
253
253
@ Override
254
254
public String toString () {
255
255
StringBuilder builder = new StringBuilder ();
256
- builder .append ("BatchPoints [database=" );
257
- builder .append (this .database );
258
- builder .append (", retentionPolicy=" );
259
- builder .append (this .retentionPolicy );
260
- builder .append (", consistency=" );
261
- builder .append (this .consistency );
262
- builder .append (", tags=" );
263
- builder .append (this .tags );
264
- builder .append (", points=" );
265
- builder .append (this .points );
266
- builder .append ("]" );
256
+ builder .append ("BatchPoints [database=" )
257
+ .append (this .database )
258
+ .append (", retentionPolicy=" )
259
+ .append (this .retentionPolicy )
260
+ .append (", consistency=" )
261
+ .append (this .consistency )
262
+ .append (", tags=" )
263
+ .append (this .tags )
264
+ .append (", points=" )
265
+ .append (this .points )
266
+ .append ("]" );
267
267
return builder .toString ();
268
268
}
269
269
You can’t perform that action at this time.
0 commit comments