Skip to content

Commit

Permalink
Addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
permcody authored and aeslaughter committed Jun 2, 2021
1 parent 40f8939 commit a87d7b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framework/include/utils/MooseUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ bool checkFileWriteable(const std::string & filename, bool throw_on_unwritable =
* (large) files. This can cause odd errors since the file technically exists, is readable,
* and even has the right name/extension. However, the content of the file will not match
* the expected content.
* @param A pointer to the open filestream.
* @param file A pointer to the open filestream.
*/
bool checkForGitLFSPointer(std::ifstream & file);

Expand Down
2 changes: 1 addition & 1 deletion framework/src/mesh/FileMesh.C
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ FileMesh::buildMesh()
getMesh().allow_renumbering(false);
}

MooseUtils::checkFileReadable(_file_name, /*check DOS line endings*/ false);
MooseUtils::checkFileReadable(_file_name);
getMesh().read(_file_name);

// we also read declared mesh meta data here if there is meta data file
Expand Down

0 comments on commit a87d7b6

Please sign in to comment.