diff options
Diffstat (limited to 'changelog.js')
| -rwxr-xr-x | changelog.js | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/changelog.js b/changelog.js index 90ec01c4..b9a623f3 100755 --- a/changelog.js +++ b/changelog.js @@ -16,7 +16,6 @@ var LINK_ISSUE = '[#%s](https://github.com/angular/angular.js/issues/%s)';  var LINK_COMMIT = '[%s](https://github.com/angular/angular.js/commit/%s)';  var EMPTY_COMPONENT = '$$'; -var MAX_SUBJECT_LENGTH = 80;  var warn = function() { @@ -54,11 +53,6 @@ var parseRawCommit = function(raw) {      return null;    } -  if (match[3].length > MAX_SUBJECT_LENGTH) { -    warn('Too long subject: %s %s', msg.hash, msg.subject); -    match[3] = match[3].substr(0, MAX_SUBJECT_LENGTH); -  } -    msg.type = match[1];    msg.component = match[2];    msg.subject = match[3]; | 
