[Minor] fixed an incorrect constructor on SimpleServiceHandler

This commit is contained in:
Robert von Burg 2013-11-14 21:36:49 +01:00
parent 34692df586
commit 30db53611b
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ public class SimpleServiceHandler extends StrolchComponent implements ServiceHan
private PrivilegeHandler privilegeHandler;
public SimpleServiceHandler(ComponentContainer container) {
super(container, ServiceHandler.class.getName());
public SimpleServiceHandler(ComponentContainer container, String componentName) {
super(container, componentName);
}
@Override