Skip to content

Commit

Permalink
Fixed the 'PhysicalFileSystem' class
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienCastex committed Jun 30, 2017
1 parent 266e900 commit 0e78d10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/manager/v2/instances/PhysicalFileSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ var _PhysicalFileSystemResource = (function () {
}
else {
var rs = data;
this.props = rs.props;
this.locks = rs.locks;
this.props = new export_1.LocalPropertyManager(rs.props);
this.locks = new export_1.LocalLockManager();
}
}
return _PhysicalFileSystemResource;
Expand Down
4 changes: 2 additions & 2 deletions src/manager/v2/instances/PhysicalFileSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export class _PhysicalFileSystemResource
else
{
const rs = data as _PhysicalFileSystemResource;
this.props = rs.props;
this.locks = rs.locks;
this.props = new LocalPropertyManager(rs.props);
this.locks = new LocalLockManager();
}
}
}
Expand Down

0 comments on commit 0e78d10

Please sign in to comment.