Skip to content

Commit

Permalink
Removed empty lines. Changed code style to match overall style.
Browse files Browse the repository at this point in the history
  • Loading branch information
diosney committed Sep 26, 2014
1 parent 3d02a57 commit 189ea95
Show file tree
Hide file tree
Showing 12 changed files with 198 additions and 139 deletions.
3 changes: 1 addition & 2 deletions lib/iptables/append.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ var exec = require('../child_utils').exec;
var tables = require('./utils').tables;
var processCommonRuleSpecs = require('./utils').processCommonRuleSpecs;


/**
* Append one or more rules to the end of the selected chain.
*
Expand Down Expand Up @@ -58,4 +57,4 @@ module.exports = function (options, cb) {
cb(null);
}
});
};
};
3 changes: 1 addition & 2 deletions lib/iptables/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ var exec = require('../child_utils').exec;
var tables = require('./utils').tables;
var processCommonRuleSpecs = require('./utils').processCommonRuleSpecs;


/**
* Checks the existence one or more rules from the selected chain.
*
Expand Down Expand Up @@ -63,4 +62,4 @@ module.exports = function (options, cb) {
cb(null);
}
});
};
};
3 changes: 1 addition & 2 deletions lib/iptables/delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ var exec = require('../child_utils').exec;
var tables = require('./utils').tables;
var processCommonRuleSpecs = require('./utils').processCommonRuleSpecs;


/**
* Delete one or more rules from the selected chain.
*
Expand Down Expand Up @@ -63,4 +62,4 @@ module.exports = function (options, cb) {
cb(null);
}
});
};
};
2 changes: 1 addition & 1 deletion lib/iptables/delete_chain.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ module.exports = function (/* options?, cb */) {
cb(null);
}
});
};
};
Loading

0 comments on commit 189ea95

Please sign in to comment.