Skip to content
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.

Commit

Permalink
Added + remove console.log #275 + PR #292
Browse files Browse the repository at this point in the history
  • Loading branch information
clemens-tolboom committed Jul 11, 2016
1 parent 90b8c72 commit ff7c9f3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bot.user.js
Expand Up @@ -1024,11 +1024,11 @@ var scheduler = window.scheduler = (function() {
description: 'Description of ' + id,
example: 'Example of ' + id,
getPriority: function() {
// No need to run
console.log('Task ' + id + ' should have an implementation for "getPriority"');
return 0;
},
execute: function() {
window.log('I should have an implementation');
console.log('Task ' + id + ' should have an implementation for "execute"');
}
}
},
Expand Down Expand Up @@ -1559,7 +1559,6 @@ var userInterface = window.userInterface = (function() {
if (ids.length <= index) {
return;
}
console.log(ids, ids[index]);
return ids[index];
},

Expand Down

0 comments on commit ff7c9f3

Please sign in to comment.