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

com.carrotsearch.hppc.generator.OutputFile Maven / Gradle / Ivy

The newest version!
package com.carrotsearch.hppc.generator;

import java.nio.file.Path;

class OutputFile {
  public final Path path;
  public boolean upToDate;

  public OutputFile(Path target) {
    this.path = target.toAbsolutePath().normalize();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy