1
0
Fork 0

Undeprecate Foxx.requireApp

This commit is contained in:
Alan Plum 2015-12-08 14:01:33 +01:00
parent 564fdec312
commit 06135043c1
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ exports.getExports = function (path) {
return manager.requireApp('/' + path.replace(/(^\/+|\/+$)/, ''));
};
exports.requireApp = function (path) {
deprecated('2.8', 'Foxx.requireApp has been renamed to Foxx.getExports.');
deprecated('3.0', 'Foxx.requireApp has been renamed to Foxx.getExports.');
return exports.getExports(path);
};