Skip to content
Snippets Groups Projects
Commit cf07ff18 authored by Sascha Herzinger's avatar Sascha Herzinger
Browse files

fixed nullpointer exception for filepaths without parent folder

parent a2098d59
No related branches found
No related tags found
1 merge request!644Refactored IConverter and XmlParser across project
Pipeline #8834 passed
......@@ -83,7 +83,10 @@ public abstract class Converter {
throws InconsistentModelException, IOException, ConverterException {
String xml = model2Xml(model);
File file = new File(filePath);
file.getParentFile().mkdirs();
File parentFile = file.getParentFile();
if (parentFile != null) {
parentFile.mkdirs();
}
try (PrintWriter out = new PrintWriter(file)) {
out.println(xml);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment