simplestore/src/main/java/com/uber/simplestore/impl/AtomicFile.java [114:123]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if (str == null) {
      return;
    }
    if (!sync(str)) {
      Log.e(LOG_TAG, "Failed to sync file output stream");
    }
    try {
      str.close();
    } catch (IOException e) {
      Log.e(LOG_TAG, "Failed to close file output stream");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



simplestore/src/main/java/com/uber/simplestore/impl/AtomicFile.java [133:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if (str == null) {
      return;
    }
    if (!sync(str)) {
      Log.e(LOG_TAG, "Failed to sync file output stream");
    }
    try {
      str.close();
    } catch (IOException e) {
      Log.e(LOG_TAG, "Failed to close file output stream");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



