Write object to YAML file @param Type of object to write @param object Object to write @param filePath File path to write to @throws IOException If file cannot be written
(T object, String filePath)
| 404 | * @throws IOException If file cannot be written |
| 405 | */ |
| 406 | public <T> void writeToYamlFile(T object, String filePath) throws IOException { |
| 407 | yamlMapper.writeValue(new java.io.File(filePath), object); |
| 408 | } |
| 409 | } |
no outgoing calls
no test coverage detected