forked from TrueCloudLab/restic
Simplify os.ModeType|os.ModeCharDevice => os.ModeType
Since Go 1.12, ModeCharDevice is included in ModeType: golang/go@a2a3dd00c9
This commit is contained in:
parent
95ebba85ff
commit
0d65b78168
1 changed files with 1 additions and 1 deletions
|
@ -9,5 +9,5 @@ func IsRegularFile(fi os.FileInfo) bool {
|
|||
return false
|
||||
}
|
||||
|
||||
return fi.Mode()&(os.ModeType|os.ModeCharDevice) == 0
|
||||
return fi.Mode()&os.ModeType == 0
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue