-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
| for(char c : string.toCharArray()) { |
[WARNING] JSONStringify.java:[249,2] [LoopOverCharArray] toCharArray allocates a new array, using charAt is more efficient
(see https://errorprone.info/bugpattern/LoopOverCharArray)
Did you mean 'for (int i = 0; i < string.length(); i++) { char c = string.charAt(i);if (c == qt) {'?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request