/trunk/src/main/java/org/mentacontainer/impl/MentaContainer.java |
---|
48,8 → 48,6 |
public <T> T clear(String key) { |
if (!beans.containsKey(key)) return null; |
Scope scope = scopes.get(key); |
if (scope == Scope.SINGLETON) { |
291,8 → 289,6 |
public boolean check(String key) { |
if (!beans.containsKey(key)) return false; |
Scope scope = scopes.get(key); |
if (scope == Scope.NONE) { |