Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(src): remove unused variables #366

Merged
merged 1 commit into from
Mar 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion distribution/mkdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,8 +580,11 @@ def update_latex_releaseinfo():

# Copy the Visual Studio solution and project files
flist = [
# os.path.join('..', 'msvs', 'mf6.sln'),
os.path.join('..', 'msvs', 'mf6.sln'),
os.path.join('..', 'msvs', 'mf6.vfproj'),
os.path.join('..', 'msvs', 'mf6core.vfproj'),
os.path.join('..', 'msvs', 'mf6bmi.sln'),
os.path.join('..', 'msvs', 'mf6bmi.vfproj'),
]
print('Copying msvs files')
for d in flist:
Expand Down
1 change: 0 additions & 1 deletion src/Model/GroundWaterFlow/gwf3disu8.f90
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,6 @@ subroutine nodeu_to_array(this, nodeu, arr)
! -- local
character(len=LINELENGTH) :: errmsg
integer(I4B) :: isize
integer(I4B) :: i, j, k
! ------------------------------------------------------------------------------
!
! -- check the size of arr
Expand Down
2 changes: 1 addition & 1 deletion src/mf6core.f90
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ subroutine Mf6Finalize()
use ListsModule, only: lists_da
use MemoryManagerModule, only: mem_usage, mem_da
use TimerModule, only: elapsed_time
use SimVariablesModule, only: istdout, iout
use SimVariablesModule, only: iout
use SimulationCreateModule, only: simulation_cr, simulation_da
use TdisModule, only: tdis_tu, tdis_da
use SimModule, only: final_message
Expand Down