(InputStream in)
| 177 | /// |
| 178 | /// - `IOException` |
| 179 | public synchronized void load(InputStream in) throws IOException { |
| 180 | if (in == null) { |
| 181 | throw new NullPointerException("in == null"); |
| 182 | } |
| 183 | load(new InputStreamReader(in, "UTF-8")); |
| 184 | } |
| 185 | |
| 186 | /// Loads properties from the specified `Reader`. |
| 187 | /// The properties file is interpreted according to the following rules: |
no test coverage detected