We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e78fc1f commit 3c4f787Copy full SHA for 3c4f787
src/main/java/com/fasterxml/jackson/core/Base64Variants.java
@@ -64,7 +64,7 @@ public final class Base64Variants
64
*/
65
public final static Base64Variant MODIFIED_FOR_URL;
66
static {
67
- StringBuffer sb = new StringBuffer(STD_BASE64_ALPHABET);
+ StringBuilder sb = new StringBuilder(STD_BASE64_ALPHABET);
68
// Replace plus with hyphen, slash with underscore (and no padding)
69
sb.setCharAt(sb.indexOf("+"), '-');
70
sb.setCharAt(sb.indexOf("/"), '_');
0 commit comments