()
| 601 | } |
| 602 | |
| 603 | protected FileSystem getFileSystem() throws IOException { |
| 604 | FileSystem fileSystem = options.getFilesystem(); |
| 605 | if (fileSystem == null) { |
| 606 | fileSystem = path.getFileSystem(options.getConfiguration()); |
| 607 | options.filesystem(fileSystem); |
| 608 | } |
| 609 | return fileSystem; |
| 610 | } |
| 611 | |
| 612 | protected Supplier<FileSystem> getFileSystemSupplier() { |
| 613 | return () -> { |