src/main/java/org/apache/datasketches/Files.java [562:568]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    checkFileName(fileName);
    final File file = new File(fileName);
    if (!file.isFile()) { // does not exist
      try {
        file.createNewFile();
      } catch (final Exception e) {
        throw new RuntimeException("Cannot create file: " + fileName + LS + e);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/Files.java [1026:1032]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    checkFileName(fileName);
    final File file = new File(fileName);
    if (!file.isFile()) { // does not exist
      try {
        file.createNewFile();
      } catch (final Exception e) {
        throw new RuntimeException("Cannot create file: " + fileName + LS + e);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



