Skip to content

Commit 6afc6ad

Browse files
authored
Fixing build
Adding space after if
1 parent e3ec28b commit 6afc6ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/influxdb/dto/Point.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,11 +276,11 @@ private void addFieldByAttribute(final Object pojo, final Field field, final Col
276276
}
277277

278278
if (column.tag()) {
279-
if(fieldValue != null) {
279+
if (fieldValue != null) {
280280
this.tags.put(fieldName, (String) fieldValue);
281281
}
282282
} else {
283-
if(fieldValue != null) {
283+
if (fieldValue != null) {
284284
this.fields.put(fieldName, fieldValue);
285285
}
286286
}

0 commit comments

Comments
 (0)