IS THIS A BUG?

Hi there, while trying to find why my "coldbox:datasource:dsn" wasn't
injecting into my modules models, I found this at the "web/
Controller.cfc"

// Setup the ColdBox Services
      services.LoaderService = CreateObject("component",
"coldbox.system.web.services.LoaderService").init(this);
      services.RequestService =
CreateObject("component","coldbox.system.web.services.RequestService").init(this);
      services.DebuggerService =
CreateObject("component","coldbox.system.web.services.DebuggerService").init(this);
      services.HandlerService = CreateObject("component",
"coldbox.system.web.services.HandlerService").init(this);
      services.PluginService =
CreateObject("component","coldbox.system.web.services.PluginService").init(this);
      services.ModuleService = "";

//EMTPTY QUOTES

I replace it with:
services.ModuleService =
CreateObject("component","coldbox.system.web.services.ModuleService").init(this);

And my issue desappear, IS THIS A BUG?

Thanks in advance