remove temp hack

This commit is contained in:
j.laycock 2019-09-03 18:20:09 +01:00
parent cbd0a98fa1
commit de5a7e60a2

View file

@ -14,7 +14,6 @@ import (
func createVolumeFile(fileName string, preallocate int64, useMemoryMap bool) (*os.File, error) {
useMemoryMap = true
mMap, exists := memory_map.FileMemoryMap[fileName]
if !exists {
file, e := os_overloads.OpenFile(fileName, windows.O_RDWR|windows.O_CREAT, 0644, useMemoryMap)