Change default scheduler to Map from List (bug 90)
This commit is contained in:
@@ -32,7 +32,7 @@ static class SchedulerListFactory : public SchedulerFactory
|
||||
public:
|
||||
SchedulerListFactory ()
|
||||
{
|
||||
SchedulerFactory::AddDefault (this, "List");
|
||||
SchedulerFactory::Add (this, "List");
|
||||
}
|
||||
private:
|
||||
virtual Scheduler *DoCreate (void) const
|
||||
|
||||
@@ -43,7 +43,7 @@ static class SchedulerMapFactory : public SchedulerFactory
|
||||
public:
|
||||
SchedulerMapFactory ()
|
||||
{
|
||||
SchedulerFactory::Add (this, "Map");
|
||||
SchedulerFactory::AddDefault (this, "Map");
|
||||
}
|
||||
private:
|
||||
virtual Scheduler *DoCreate (void) const
|
||||
|
||||
Reference in New Issue
Block a user