Skip to content

Commit

Permalink
Warnings removal
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 8, 2023
1 parent 697b302 commit 7cb6046
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public class CsvEncoder
// Default set of escaped characters (none)
private static final int [] sOutputEscapes = new int[0];

final protected static char[] HEX_CHARS = CharTypes.copyHexChars();
// Upper case hex chars:
final protected static char[] HEX_CHARS = CharTypes.copyHexChars(true);

/**
* As an optimization we try coalescing short writes into
Expand Down

0 comments on commit 7cb6046

Please sign in to comment.