1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-26 14:19:05 +02:00

Close database connections on plugin deactivation

This commit is contained in:
snowleo
2011-07-19 10:34:02 +02:00
parent 150a0e0ddd
commit 4a963b22f1
4 changed files with 22 additions and 1 deletions

View File

@@ -245,4 +245,9 @@ public class ProtectedBlockMemory implements IProtectedBlock
}
return id;
}
public void onPluginDeactivation()
{
storage.onPluginDeactivation();
}
}