Merge pull request #5717 from atom/izuzak-remove-unused-variable

Remove unused variable
This commit is contained in:
Ivan Žužak
2015-02-24 19:22:54 +01:00

View File

@@ -523,7 +523,7 @@ class Package
if @path.indexOf(path.join(atom.packages.resourcePath, 'node_modules') + path.sep) is 0
# Bundled packages are always considered compatible
@compatible = true
else if packageMain = @getMainModulePath()
else if @getMainModulePath()
@incompatibleModules = @getIncompatibleNativeModules()
@compatible = @incompatibleModules.length is 0
else