Skip to content

Commit c900bf6

Browse files
committed
chore: fix lint issue
1 parent 20269f0 commit c900bf6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

client/src/main/java/com/influxdb/client/internal/InfluxQLQueryApiImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ private static Map<String, String> parseTags(@Nonnull final String value) {
220220
}
221221
}
222222
for (int i = 0; i < keys.size(); i++) {
223-
tags.put( // be sure to surround any values containing escapes with double quotes
223+
// be sure to surround any values containing escapes with double quotes
224+
tags.put(
224225
keys.get(i).contains("\\") ? "\"" + keys.get(i) + "\"" : keys.get(i),
225226
values.get(i).contains("\\") ? "\"" + values.get(i) + "\"" : values.get(i)
226227
);

0 commit comments

Comments
 (0)