Fixed null case.

This commit is contained in:
Christian P. MOMON 2021-10-24 13:20:46 +02:00
parent 4394acec56
commit dd7a1054b0

View file

@ -60,7 +60,10 @@ public class ODSFile
}
finally
{
out.close();
if (out != null)
{
out.close();
}
}
}
@ -82,7 +85,10 @@ public class ODSFile
}
finally
{
out.close();
if (out != null)
{
out.close();
}
}
}
}