Avoid hardcoding platform on blacklist

Reviewed By: davidaurelio

Differential Revision: D3042906

fb-gh-sync-id: 4a424ef1012d75d06c830b284806aefd1556ff74
shipit-source-id: 4a424ef1012d75d06c830b284806aefd1556ff74
This commit is contained in:
Martín Bigio 2016-03-12 10:58:55 -08:00 committed by Facebook Github Bot 4
parent 0fe44bd1ab
commit c46d6cc239
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ module.exports = {
return this._getRoots();
},
getBlacklistRE() {
return blacklist('');
getBlacklistRE(platform) {
return blacklist(platform);
},
_getRoots() {