Skip to content

Commit 028b24f

Browse files
author
Chris Moultrie
committed
Cleaning up lint errors
1 parent 48c4f36 commit 028b24f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/jira.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,17 +1292,17 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
12921292
if (error) {
12931293
callback(error, null);
12941294
return;
1295-
};
1295+
}
12961296

12971297
if (response.statusCode === 201) {
12981298
callback(null, "Success");
12991299
return;
1300-
};
1300+
}
13011301

13021302
if (response.statusCode === 400) {
13031303
callback("Invalid Fields: " + JSON.stringify(body));
13041304
return;
1305-
};
1305+
}
13061306
});
13071307
};
13081308
// ## Add a worklog to a project ##

0 commit comments

Comments
 (0)