Skip to content

Commit

Permalink
[2023.8]
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce committed Aug 8, 2023
1 parent 08e3c18 commit 3c10efc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/FMAT.R
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ FMAT_load = function(models) {
}, silent=TRUE)
if(error) {
warning(warning.init, call.=FALSE)
invisible(NULL)
return(NULL)
}
}

Expand Down Expand Up @@ -520,7 +520,7 @@ FMAT_run = function(
) {
if(is.null(models)) {
warning(warning.init, call.=FALSE)
invisible(NULL)
return(NULL)
}

t0 = Sys.time()
Expand Down Expand Up @@ -679,7 +679,7 @@ summary.fmat = function(
...) {
if(is.null(object)) {
warning(warning.init, call.=FALSE)
invisible(NULL)
return(NULL)
}

if(warning) warning_oov(object)
Expand Down

0 comments on commit 3c10efc

Please sign in to comment.