unused function
This commit is contained in:
parent
3b8b83fbd9
commit
b03208bc69
19
src/IO.f90
19
src/IO.f90
|
@ -23,7 +23,6 @@ module IO
|
||||||
IO_init, &
|
IO_init, &
|
||||||
IO_read, &
|
IO_read, &
|
||||||
IO_recursiveRead, &
|
IO_recursiveRead, &
|
||||||
IO_checkAndRewind, &
|
|
||||||
IO_open_file_stat, &
|
IO_open_file_stat, &
|
||||||
IO_open_jobFile_stat, &
|
IO_open_jobFile_stat, &
|
||||||
IO_open_file, &
|
IO_open_file, &
|
||||||
|
@ -232,24 +231,6 @@ recursive function IO_recursiveRead(fileName,cnt) result(fileContent)
|
||||||
end function IO_recursiveRead
|
end function IO_recursiveRead
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
|
||||||
!> @brief checks if unit is opened for reading, if true rewinds. Otherwise stops with
|
|
||||||
!! error message
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
|
||||||
subroutine IO_checkAndRewind(fileUnit)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
integer(pInt), intent(in) :: fileUnit !< file unit
|
|
||||||
logical :: fileOpened
|
|
||||||
character(len=15) :: fileRead
|
|
||||||
|
|
||||||
inquire(unit=fileUnit, opened=fileOpened, read=fileRead)
|
|
||||||
if (.not. fileOpened .or. trim(fileRead)/='YES') call IO_error(102_pInt)
|
|
||||||
rewind(fileUnit)
|
|
||||||
|
|
||||||
end subroutine IO_checkAndRewind
|
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
!> @brief opens existing file for reading to given unit. Path to file is relative to working
|
!> @brief opens existing file for reading to given unit. Path to file is relative to working
|
||||||
!! directory
|
!! directory
|
||||||
|
|
Loading…
Reference in New Issue