private static boolean sync()

in simplestore/src/main/java/com/uber/simplestore/impl/AtomicFile.java [207:214]


  private static boolean sync(FileOutputStream stream) {
    try {
      stream.getFD().sync();
      return true;
    } catch (IOException e) {
    }
    return false;
  }