Skip to content

Commit

Permalink
Fixing bit where I missed semicolons. Thanks ASI.
Browse files Browse the repository at this point in the history
  • Loading branch information
squeeks committed Mar 18, 2013
1 parent f5a1cc9 commit 19b24eb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/glossy/parse.js
Expand Up @@ -194,7 +194,7 @@ GlossyParser.prototype.parse = function(rawMessage, callback) {
*/
GlossyParser.prototype.decideValue = function(value) {
return value === '-' ? null : value;
}
};

/*
* Parses the PRI value from the start of message
Expand Down Expand Up @@ -229,7 +229,7 @@ GlossyParser.prototype.decodePri = function(message) {
}

return returnVal;
}
};


/*
Expand Down Expand Up @@ -304,7 +304,7 @@ GlossyParser.prototype.parseTimeStamp = function(timeStamp) {

return parsedTime;

}
};


/*
Expand Down Expand Up @@ -372,7 +372,7 @@ GlossyParser.prototype.parseStructure = function(msg) {
}
}
return sdStructure;
}
};


/*
Expand Down Expand Up @@ -428,7 +428,7 @@ GlossyParser.prototype.parseSignedBlock = function(block) {

return validatedBlock;

}
};


/*
Expand Down Expand Up @@ -486,7 +486,7 @@ GlossyParser.prototype.parseSignedCertificate = function(block) {

return validatedBlock;

}
};


if(typeof module == 'object') {
Expand Down

0 comments on commit 19b24eb

Please sign in to comment.