remove prints (#11918)

This commit is contained in:
Hridoy Roy 2021-06-22 09:40:53 -07:00 committed by GitHub
parent 9bcb480cb7
commit bbfd450319
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -39,9 +39,6 @@ func CheckFilePerms(info fs.FileInfo) (bool, []string) {
hasSomeRead := false
hasSomeWrite := false
fmt.Printf("perms are %s", mode)
fmt.Printf("owner read is: %b, %b", mode&0400, mode&0200)
// Check owner perms
if mode&0400 != 0 {
hasSomeRead = true