(int codepoint)
| 2384 | } |
| 2385 | |
| 2386 | static boolean isPrintableChar(int codepoint) { |
| 2387 | Character.UnicodeBlock block = Character.UnicodeBlock.of(codepoint); |
| 2388 | if (block == null || block == Character.UnicodeBlock.SPECIALS) |
| 2389 | return false; |
| 2390 | return !Character.isISOControl(codepoint); |
| 2391 | } |
| 2392 | // https://issuetracker.google.com/issues/37054851 |
| 2393 | |
| 2394 | static String getPrintableString(String value, boolean debug) { |
no test coverage detected