Skip to content

Commit

Permalink
Remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
dkulp committed Dec 6, 2022
1 parent b3c4000 commit 9e3ec6f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/org/codehaus/jettison/json/JSONObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -1044,9 +1044,6 @@ public static String quote(String string, boolean escapeForwardSlashAlways) {
switch (c) {
case '\\':
sb.append("\\\\");
//if (i < (len - 1) && string.charAt(i+1) == '\\') {
// i++;
//}
break;
case '"':
sb.append("\\\"");
Expand Down

0 comments on commit 9e3ec6f

Please sign in to comment.