We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03f1180 commit 7da11b9Copy full SHA for 7da11b9
1 file changed
package/src/synoedit/file_utils.go
@@ -21,7 +21,6 @@ package main
21
import (
22
"io/ioutil"
23
"os"
24
- "syscall"
25
)
26
27
// FileExists returns true if the file path exists.
@@ -59,7 +58,7 @@ func SaveFile(file string, data string) {
59
58
}
60
61
// Get stat structure (for uid and gid)
62
- stat := fInfo.Sys().(*syscall.Stat_t)
+ // stat := fInfo.Sys().(*syscall.Stat_t)
63
64
// Create file
65
f, err := os.Create(file + ".tmp")
0 commit comments