Skip to content

Commit 0bb859e

Browse files
Fixed consistency of blank lines around comments
1 parent f15e54c commit 0bb859e

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

lib/jira.js

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
248248
// * count: count of unresolved issues for requested version
249249
//
250250
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id288524)
251-
252251
this.getUnresolvedIssueCount = function(version, callback) {
253252
var options = {
254253
rejectUnauthorized: this.strictSSL,
@@ -290,7 +289,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
290289
// * project: the json object representing the entire project
291290
//
292291
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id289232)
293-
294292
this.getProject = function(project, callback) {
295293

296294
var options = {
@@ -609,7 +607,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
609607
// * versions: array of the versions for a product
610608
//
611609
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id289653)
612-
613610
this.getVersions = function(project, callback) {
614611

615612
var options = {
@@ -782,7 +779,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
782779
// * issues: array of issues for the user
783780
//
784781
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id333082)
785-
//
786782
this.searchJira = function(searchString, optional, callback) {
787783
// backwards compatibility
788784
optional = optional || {};
@@ -947,17 +943,18 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
947943

948944
});
949945
};
950-
// ## Delete issue to Jira ##
951-
// ### Takes ###
952-
//
953-
// * issueId: the Id of the issue to delete
954-
// * callback: for when it's done
955-
//
956-
// ### Returns ###
957-
// * error string
958-
// * success object
959-
//
960-
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id290791)
946+
947+
// ## Delete issue to Jira ##
948+
// ### Takes ###
949+
//
950+
// * issueId: the Id of the issue to delete
951+
// * callback: for when it's done
952+
//
953+
// ### Returns ###
954+
// * error string
955+
// * success object
956+
//
957+
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id290791)
961958
this.deleteIssue = function(issueNum, callback) {
962959
var options = {
963960
rejectUnauthorized: this.strictSSL,
@@ -983,6 +980,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
983980

984981
});
985982
};
983+
986984
// ## Update issue in Jira ##
987985
// ### Takes ###
988986
//
@@ -1262,6 +1260,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
12621260

12631261
});
12641262
};
1263+
12651264
// ## Transition issue in Jira ##
12661265
// ### Takes ###
12671266
//
@@ -1352,6 +1351,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
13521351

13531352
});
13541353
};
1354+
13551355
// ## Add a comment to an issue ##
13561356
// ### Takes ###
13571357
// * issueId: Issue to add a comment to
@@ -1392,6 +1392,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
13921392
}
13931393
});
13941394
};
1395+
13951396
// ## Add a worklog to a project ##
13961397
// ### Takes ###
13971398
// * issueId: Issue to add a worklog to
@@ -1468,6 +1469,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
14681469

14691470
});
14701471
};
1472+
14711473
// ## List all Issue Types ##
14721474
// ### Takes ###
14731475
//
@@ -1688,7 +1690,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
16881690
});
16891691
};
16901692

1691-
16921693
// ## Describe the currently authenticated user ##
16931694
// ### Takes ###
16941695
//
@@ -1713,7 +1714,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
17131714
* }
17141715
* }
17151716
*/
1716-
17171717
this.getCurrentUser = function(callback) {
17181718
var options = {
17191719
rejectUnauthorized: this.strictSSL,

0 commit comments

Comments
 (0)