You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
InXMind2MindMapImporter class, thedoImport method created aZipFile object without closing it. This could lead to file handle leaks. I fixed this by implementing a try-with-resources statement to ensure proper closure.
Similarly, inNovamind2MindMapImporter class, the same issue existed in itsdoImport method. I applied the same fix using try-with-resources.
The text was updated successfully, but these errors were encountered:
XMind2MindMapImporter
class, thedoImport
method created aZipFile
object without closing it. This could lead to file handle leaks. I fixed this by implementing a try-with-resources statement to ensure proper closure.Novamind2MindMapImporter
class, the same issue existed in itsdoImport
method. I applied the same fix using try-with-resources.The text was updated successfully, but these errors were encountered: