Skip to content

Commit 970f47e

Browse files
committed
chore: remove commented code block
1 parent 0a5e4e9 commit 970f47e

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

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

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -221,19 +221,4 @@ private static Map<String, String> parseTags(@Nonnull final String value) {
221221

222222
return tags;
223223
}
224-
225-
/*
226-
private static Map<String, String> parseTags(@Nonnull final String value) {
227-
final Map<String, String> tags = new HashMap<>();
228-
if (value.length() > 0) {
229-
for (String entry : value.split(",")) {
230-
final String[] kv = entry.split("=");
231-
tags.put(kv[0], kv[1]);
232-
}
233-
}
234-
235-
return tags;
236-
}
237-
238-
*/
239224
}

0 commit comments

Comments
 (0)