(String what)
| 734 | |
| 735 | |
| 736 | static public boolean containsNonASCII(String what) { |
| 737 | for (char c : what.toCharArray()) { |
| 738 | if (c < 32 || c > 127) return true; |
| 739 | } |
| 740 | return false; |
| 741 | } |
| 742 | |
| 743 | |
| 744 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no outgoing calls
no test coverage detected