Skip to content

Commit

Permalink
Small cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
misterfifths committed Jan 8, 2012
1 parent 864d5ae commit e087224
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions jutil.js
Expand Up @@ -341,8 +341,7 @@ function mapOverInput(expr, runtimeSettings, handleOne)

function runPredicate(runtimeSettings, opts, handleMatch)
{
var expr = '!!(' + opts.predicate + ')',
res = [];
var expr = '!!(' + opts.predicate + ')';

mapOverInput(expr, runtimeSettings, function(raw, matched) {
if(matched)
Expand Down Expand Up @@ -717,7 +716,6 @@ function parseCommandLine(commands)
}
};

// TODO: implement. Also needs a setting.
withClauseOpt = {
abbr: 'W',
full: 'disable-with',
Expand Down

0 comments on commit e087224

Please sign in to comment.