Skip to content

Commit

Permalink
chore: delete some useless characters (#728)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphinesse authored and erisu committed Nov 28, 2019
1 parent dc327c1 commit 0f86566
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin/templates/scripts/cordova/Api.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Api.createPlatform = function (destination, config, options, events) {
});
} catch (e) {
events.emit('error', 'createPlatform is not callable from the iOS project API.');
throw (e);
throw e;
}
return result;
};
Expand Down Expand Up @@ -170,7 +170,7 @@ Api.updatePlatform = function (destination, options, events) {
});
} catch (e) {
events.emit('error', 'updatePlatform is not callable from the iOS project API, you will need to do this manually.');
throw (e);
throw e;
}
return result;
};
Expand Down
3 changes: 0 additions & 3 deletions bin/templates/scripts/cordova/lib/Podfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,6 @@ Podfile.prototype.install = function (requirementsCheckerFunction) {
})
.then(function () { // done
events.emit('verbose', '==== pod install end ====\n');
})
.fail(function (error) {
throw error;
});
};

Expand Down

0 comments on commit 0f86566

Please sign in to comment.