Skip to content

Commit 331194d

Browse files
committed
Remove a redundant repeated require()
1 parent 460dd4d commit 331194d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-04-14 Dirk Eddelbuettel <[email protected]>
2+
3+
* inst/tinytest/test_sparse.R: Remove a redundant duplicate require
4+
statement in unit test file
5+
16
2025-03-27 Dirk Eddelbuettel <[email protected]>
27

38
* DESCRIPTION (Version, Date): RcppArmadillo 14.4.1-1

inst/tinytest/test_sparse.R

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/r -t
22
##
3-
## Copyright (C) 2014 - 2022 Dirk Eddelbuettel
3+
## Copyright (C) 2014 - 2025 Dirk Eddelbuettel
44
##
55
## This file is part of RcppArmadillo.
66
##
@@ -26,8 +26,7 @@ library(RcppArmadillo)
2626
Rcpp::sourceCpp("cpp/sparse.cpp")
2727

2828
## setting up an example matrix -- using the fact that the as<sp_mat>
29-
## converter prefers sparse matrix objects create by the Matrix package
30-
suppressMessages(require(Matrix))
29+
## converter prefers sparse matrix objects created by the Matrix package
3130
## cf http://people.sc.fsu.edu/~jburkardt/data/st/st.html
3231
mtxt <- c("11 0 0 14 0 16",
3332
" 0 22 0 0 25 26",

0 commit comments

Comments
 (0)