Skip to content

Commit f15e54c

Browse files
Added missing semicolons and proper indent
1 parent cea6375 commit f15e54c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/jira.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,8 +1432,8 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
14321432
*/
14331433
this.addWorklog = function(issueId, worklog, newEstimate, callback) {
14341434
if(typeof callback == 'undefined') {
1435-
callback = newEstimate
1436-
newEstimate = false
1435+
callback = newEstimate;
1436+
newEstimate = false;
14371437
}
14381438
var options = {
14391439
rejectUnauthorized: this.strictSSL,

0 commit comments

Comments
 (0)