Skip to content

Commit

Permalink
Remove unused variable from atom.js
Browse files Browse the repository at this point in the history
  • Loading branch information
christianvuerings committed Jun 11, 2014
1 parent c4c4cd4 commit 9d2c0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/atom.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ $.fn.lifestream.feeds.atom = function( config, callback ) {
* Parse the input from atom feed
*/
parseAtom = function( input ) {
var output = [], list = [], i = 0, j = 0, url = '';
var output = [], list = [], i = 0, j = 0;
if(input.query && input.query.count && input.query.count > 0) {
list = input.query.results.feed.entry;
j = list.length;
Expand Down

0 comments on commit 9d2c0de

Please sign in to comment.