This commit is contained in:
Michael Lipp 2023-07-22 15:50:17 +02:00
parent 50bff5d38f
commit 43395ce929
2 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ public class Manager extends Component {
// Prepare component tree // Prepare component tree
attach(new NioDispatcher()); attach(new NioDispatcher());
attach(new VmDefinitionWatcher(channel())); attach(new VmDefinitionWatcher(channel()));
attach(new Reconciliator(channel())); attach(new Reconciler(channel()));
} }
/** /**

View file

@ -4,9 +4,9 @@ import org.jgrapes.core.Channel;
import org.jgrapes.core.Component; import org.jgrapes.core.Component;
import org.jgrapes.core.annotation.Handler; import org.jgrapes.core.annotation.Handler;
public class Reconciliator extends Component { public class Reconciler extends Component {
public Reconciliator(Channel componentChannel) { public Reconciler(Channel componentChannel) {
super(componentChannel); super(componentChannel);
} }