Remove obsolete jshint comments (#444)

This commit is contained in:
Raphael von der Grün
2018-05-21 12:02:14 +02:00
committed by Shazron Abdullah
parent fc69da7a42
commit 02ee925103
11 changed files with 0 additions and 24 deletions
-4
View File
@@ -51,15 +51,11 @@ AndroidManifest.prototype.setVersionCode = function (versionCode) {
};
AndroidManifest.prototype.getPackageId = function () {
/* jshint -W069 */
return this.doc.getroot().attrib['package'];
/* jshint +W069 */
};
AndroidManifest.prototype.setPackageId = function (pkgId) {
/* jshint -W069 */
this.doc.getroot().attrib['package'] = pkgId;
/* jshint +W069 */
return this;
};