Fixed stupid memory lag. Managers are now using Singleton-pattern!

This commit is contained in:
0xSeb
2015-10-29 01:26:08 +01:00
parent 676bc0aed9
commit 13353094e3
3 changed files with 20 additions and 3 deletions
@@ -21,7 +21,7 @@ public abstract class ContainerManager {
*
* @param container The container to work with
*/
public ContainerManager(Container container) {
protected ContainerManager(Container container) {
this.container = container;
}