| 1975 | // Is CR or LF ? |
| 1976 | |
| 1977 | boolean RemoteDebug::isCRLF(char character) { |
| 1978 | |
| 1979 | return (character == '\r' || character == '\n'); |
| 1980 | |
| 1981 | } |
| 1982 | |
| 1983 | // Expand characters as CR/LF to \\r, \\n |
| 1984 | // TODO: make this for another chars not printable |
nothing calls this directly
no outgoing calls
no test coverage detected