Fix accessing options.

This commit is contained in:
André Cruz
2013-07-20 22:07:23 +01:00
parent 3fdf639bb4
commit 3b8d00095e

View File

@@ -22,6 +22,8 @@ function Project(config, logger) {
this._config = config || defaultConfig;
this._logger = logger || new Logger();
this._manager = new Manager(this._config, this._logger);
this._options = {};
}
// -----------------