Skip to content

Commit 839b3c7

Browse files
authored
Change return statement to return nothing
1 parent 42458b8 commit 839b3c7

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

src/decompression.jl

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -707,23 +707,17 @@ function decompress_csc!(
707707
#! format: on
708708
end
709709
end
710-
return
710+
return nothing
711711
end
712712

713713
function decompress!(
714-
A::AbstractSparseMatrixCSC{R},
714+
A::SparseMatrixCSC{R},
715715
B::AbstractMatrix{R},
716716
result::TreeSetColoringResult,
717717
uplo::Symbol=:F,
718718
) where {R<:Real}
719719
check_compatible_pattern(A, result.ag, uplo)
720-
decompress_csc!(
721-
A.colptr,
722-
nonzeros(A),
723-
B,
724-
result,
725-
uplo,
726-
)
720+
decompress_csc!(A.colptr, nonzeros(A), B, result, uplo)
727721
return A
728722
end
729723

0 commit comments

Comments
 (0)