Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
NguyenHoangSon96 committed Nov 29, 2024
1 parent 16ea54f commit 547c87e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ public Object getMappedValue(@Nonnull final Field field, @Nullable final Object
return value;
}
default:
return value;

Check warning on line 169 in src/main/java/com/influxdb/v3/client/internal/VectorSchemaRootConverter.java

View check run for this annotation

Codecov / codecov/patch

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

Added line #L169 was not covered by tests
}
} else if ("timestamp".equals(valueType) || Objects.equals(fieldName, "time")) {
return NanosecondConverter.getTimestampNano(value, field);
} else {
return TypeCasting.toStringValue(value);
}
return value;
}

/**
Expand Down

0 comments on commit 547c87e

Please sign in to comment.