Skip to content

Commit f13f048

Browse files
committed
Minor formatting
1 parent 3da5f89 commit f13f048

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

generic3g/OuterMetaComponent/initialize_read_restart.F90

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ module recursive subroutine initialize_read_restart(this, unusable, rc)
3535
call esmf_ClockGet(driver%get_clock(), currTime=currTime, _RC)
3636

3737
user_logger => this%get_logger()
38-
restart_handler = RestartHandler( &
39-
this%get_geom(), &
40-
currTime, &
41-
user_logger)
38+
restart_handler = RestartHandler(this%get_geom(), currTime, user_logger)
4239

4340
states = driver%get_states()
4441
subdir = get_checkpoint_subdir(this%hconfig, currTime, _RC)

generic3g/OuterMetaComponent/write_restart.F90

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@ module recursive subroutine write_restart(this, importState, exportState, clock,
3434
driver => this%get_user_gc_driver()
3535
call esmf_ClockGet(driver%get_clock(), currTime=currTime, _RC)
3636

37-
restart_handler = RestartHandler( &
38-
this%get_geom(), &
39-
currTime, &
40-
this%get_logger())
37+
restart_handler = RestartHandler(this%get_geom(), currTime, this%get_logger())
4138

4239
states = driver%get_states()
4340
subdir = get_checkpoint_subdir(this%hconfig, currTime, _RC)

0 commit comments

Comments
 (0)