private void initializeFileSystem()

in modules/vfs-class-loader/src/main/java/org/apache/accumulo/classloader/vfs/AccumuloVFSClassLoader.java [301:317]


  private void initializeFileSystem() {
    if (!this.vfsInitialized) {
      if (DEBUG) {
        VFSManager.enableDebug();
      }
      try {
        if (DEBUG) {
          printDebug("Creating new VFS File System");
        }
        VFSManager.initialize();
      } catch (FileSystemException e) {
        printError("Error creating FileSystem: " + e.getMessage());
        throw new RuntimeException("Problem creating VFS file system", e);
      }
      printDebug("VFS File System created.");
    }
  }