Skip to content

Commit

Permalink
remove unused semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
eirikurj committed Sep 7, 2023
1 parent 84daa4a commit 8ec7b00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/preprocessing/preprocessingAPI.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3602,7 +3602,7 @@ subroutine faceRotationMatrices(level, allocMem)
! The rotation matrices for the i-faces.

do mm = 1, il
xFace => x(mm, 1:, 1:, :);
xFace => x(mm, 1:, 1:, :)
rotFace => rotMatrixI(mm, :, :, :, :)

call computeRotMatrixFace(xFace, rotFace, jl, kl)
Expand All @@ -3611,7 +3611,7 @@ subroutine faceRotationMatrices(level, allocMem)
! The rotation matrices for the j-faces.

do mm = 1, jl
xFace => x(1:, mm, 1:, :);
xFace => x(1:, mm, 1:, :)
rotFace => rotMatrixJ(:, mm, :, :, :)

call computeRotMatrixFace(xFace, rotFace, il, kl)
Expand All @@ -3620,7 +3620,7 @@ subroutine faceRotationMatrices(level, allocMem)
! The rotation matrices for the k-faces.

do mm = 1, kl
xFace => x(1:, 1:, mm, :);
xFace => x(1:, 1:, mm, :)
rotFace => rotMatrixK(:, :, mm, :, :)

call computeRotMatrixFace(xFace, rotFace, il, jl)
Expand Down

0 comments on commit 8ec7b00

Please sign in to comment.