Skip to content

Commit 16ea54f

Browse files
fix: linter
1 parent 06e29ed commit 16ea54f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/influxdb/v3/client/internal/VectorSchemaRootConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public Object getMappedValue(@Nonnull final Field field, @Nullable final Object
169169
}
170170
} else if ("timestamp".equals(valueType) || Objects.equals(fieldName, "time")) {
171171
return NanosecondConverter.getTimestampNano(value, field);
172-
} else if ("tag".equals(valueType)) {
172+
} else {
173173
return TypeCasting.toStringValue(value);
174174
}
175175
return value;

0 commit comments

Comments
 (0)