Skip to content

Commit

Permalink
removed unused copy-pasted TreeMap
Browse files Browse the repository at this point in the history
  • Loading branch information
dnet committed Apr 26, 2019
1 parent e24981a commit 4ddccb8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/burp/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ private static void escapeJson(Json node, StringBuilder output) {
output.append('}');
} else if (node.isArray()) {
String prefix = "[";
Map<String, Json> tm = new TreeMap(String.CASE_INSENSITIVE_ORDER);
for (Json value : node.asJsonList()) {
output.append(prefix);
prefix = ", ";
Expand Down

0 comments on commit 4ddccb8

Please sign in to comment.