MutablePicoContainer container = getDelegate();
try {
// Remove the component if an instance of it was already registered
container.removeComponent(toInjectInto.getClass());
// Add the given instance to the container
container.addComponent(toInjectInto.getClass(), toInjectInto);
/*