Remove unneeded log
This commit is contained in:
parent
b5a8cfb704
commit
73ce16fc52
2 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,6 @@ work. This adds a little overhead for those APIs.
|
||||||
APIs that requires extra unpacking are:
|
APIs that requires extra unpacking are:
|
||||||
|
|
||||||
* `child_process.execFile`
|
* `child_process.execFile`
|
||||||
* `child_process.fork`
|
|
||||||
* `fs.open`
|
* `fs.open`
|
||||||
* `fs.openSync`
|
* `fs.openSync`
|
||||||
* `process.dlopen` - Used by `require` on native modules
|
* `process.dlopen` - Used by `require` on native modules
|
||||||
|
@ -143,4 +142,6 @@ archives is generated by guessing, because those files do not exist on the
|
||||||
filesystem. So you should not trust the `Stats` object except for getting file
|
filesystem. So you should not trust the `Stats` object except for getting file
|
||||||
size and checking file type.
|
size and checking file type.
|
||||||
|
|
||||||
|
## Unpacking files in `asar` archive
|
||||||
|
|
||||||
[asar]: https://github.com/atom/asar
|
[asar]: https://github.com/atom/asar
|
||||||
|
|
|
@ -123,7 +123,6 @@ describe 'protocol module', ->
|
||||||
assert.equal response.length, data.length
|
assert.equal response.length, data.length
|
||||||
buf = new Buffer(response.length)
|
buf = new Buffer(response.length)
|
||||||
buf.write(response)
|
buf.write(response)
|
||||||
console.log buf, data
|
|
||||||
assert buf.equals(data)
|
assert buf.equals(data)
|
||||||
protocol.unregisterProtocol 'atom-file-job'
|
protocol.unregisterProtocol 'atom-file-job'
|
||||||
done()
|
done()
|
||||||
|
|
Loading…
Add table
Reference in a new issue