All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.build.internal.Chdir Maven / Gradle / Ivy

package scala.build.internal;

import coursier.jvm.ErrnoException;

public final class Chdir {

  public static boolean available() {
    return false;
  }

  public static void chdir(String path) throws ErrnoException {
    // Not supported on the JVM, returning immediately
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy