我正在考虑返回一个包含多个目录列表的地图。但第一个给我带来了警告:
def enlistFiles() {
return
[downloadFolder: downloadFolder.listFiles( new FileFilter() {
@Override
boolean accept(File file) {
return !file.isDirectory()
}
})]
}
“代码无法访问”
为什么?