Rebase conflict resolution removed two methods accidentally, replaced them

This commit is contained in:
kwkofler 2014-03-07 18:59:30 -05:00
parent 880f70d3de
commit c975c2e3e6
1 changed files with 8 additions and 0 deletions

View File

@ -151,6 +151,14 @@ define(function(require) {
return this.type === MODE_SYMBOLIC_LINK;
};
Stats.prototype.isFIFO = function() {
return false;
};
Stats.prototype.isSocket = function() {
return false;
};
/*
* Update node times. Only passed times are modified (undefined times are ignored)
* and filesystem flags are examined in order to override update logic.