Add mkdirs check

This commit is contained in:
Jonathan Leitschuh
2020-12-08 15:31:18 -05:00
parent cf0ed81575
commit ecad7534ae
2 changed files with 6 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ private class MethodFileSystemFileCreation extends Method {
MethodFileSystemFileCreation() {
getDeclaringType() instanceof TypeFile and
(
hasName("mkdir") or
hasName(["mkdir", "mkdirs"]) or
hasName("createNewFile")
)
}