Our own little min method, to avoid loading java.lang.Math if we've run out of file descriptors, and we're trying to print a stack trace.
(int a, int b)
| 207 | * to print a stack trace. |
| 208 | */ |
| 209 | private static int min(int a, int b) { |
| 210 | return Math.min(a, b); |
| 211 | } |
| 212 | |
| 213 | @Override |
| 214 | public void write(char[] cbuf, int off, int len) throws IOException { |
no outgoing calls
no test coverage detected