Skip to content

Commit 547c87e

Browse files
fix: linter
1 parent 16ea54f commit 547c87e

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
@@ -166,13 +166,13 @@ public Object getMappedValue(@Nonnull final Field field, @Nullable final Object
166166
return value;
167167
}
168168
default:
169+
return value;
169170
}
170171
} else if ("timestamp".equals(valueType) || Objects.equals(fieldName, "time")) {
171172
return NanosecondConverter.getTimestampNano(value, field);
172173
} else {
173174
return TypeCasting.toStringValue(value);
174175
}
175-
return value;
176176
}
177177

178178
/**

0 commit comments

Comments
 (0)