Merge pull request #77 from mbj/master
minor: remove noop assignment in GridIO.new call
This commit is contained in:
commit
885f7477f1
|
@ -70,7 +70,7 @@ module Mongo
|
||||||
opts = opts.dup
|
opts = opts.dup
|
||||||
filename = opts[:filename]
|
filename = opts[:filename]
|
||||||
opts.merge!(default_grid_io_opts)
|
opts.merge!(default_grid_io_opts)
|
||||||
file = GridIO.new(@files, @chunks, filename, 'w', opts=opts)
|
file = GridIO.new(@files, @chunks, filename, 'w', opts)
|
||||||
file.write(data)
|
file.write(data)
|
||||||
file.close
|
file.close
|
||||||
file.files_id
|
file.files_id
|
||||||
|
|
Loading…
Reference in New Issue