Skip to content

Commit

Permalink
Remove stray call to new.
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Pedroza <[email protected]>
  • Loading branch information
findgriffin and pnwpedro authored Sep 17, 2024
1 parent d74aa54 commit 5e218ee
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/com/fauna/response/QueryTags.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public class QueryTags extends HashMap<String, String> {
*/
public static QueryTags of(String... tags) {
QueryTags queryTags = new QueryTags();
new QueryTags();
for (String tagString : tags) {
String[] tag = tagString.split("=");
if (tag.length == 2) {
Expand Down

0 comments on commit 5e218ee

Please sign in to comment.