(OutputStream out, String comment)
| 481 | /// |
| 482 | /// - `ClassCastException`: if a key or value is not a string |
| 483 | public synchronized void store(OutputStream out, String comment) throws IOException { |
| 484 | store(new OutputStreamWriter(out, "UTF-8"), comment); |
| 485 | } |
| 486 | |
| 487 | /// Stores the mappings in this `Properties` object to `out`, |
| 488 | /// putting the specified comment at the beginning. |
no test coverage detected