(String s)
| 53 | } |
| 54 | |
| 55 | public static String lowerCaseFirstChar(String s) { |
| 56 | StringBuilder sb = new StringBuilder(s); |
| 57 | sb.setCharAt(0, Character.toLowerCase(sb.charAt(0))); |
| 58 | return sb.toString(); |
| 59 | } |
| 60 | |
| 61 | public static String toString(InputStream inputStream) throws IOException { |
| 62 | BufferedInputStream bis = new BufferedInputStream(inputStream); |
no test coverage detected