Skip to content
Snippets Groups Projects
Commit 43e218bb authored by Sebastian Henz's avatar Sebastian Henz
Browse files

Fix bug that causes plot functions to visibly return NULL, closes #51

parent e89f3b7f
No related branches found
No related tags found
No related merge requests found
Package: stressaddition
Type: Package
Title: Modelling Tri-Phasic Concentration-Response Relationships
Version: 3.0.1
Date: 2020-07-29
Version: 3.0.2
Date: 2020-08-18
Authors@R: c(person("Sebastian",
"Henz",
role = c("aut", "cre"),
......
......@@ -194,5 +194,5 @@ plot_stress <- function(model,
)
}
}
NULL # suppress all possible return values
invisible(NULL) # suppress all possible return values
}
......@@ -175,5 +175,5 @@ plot_survival <- function(model,
)
}
}
NULL # suppress all possible return values
invisible(NULL) # suppress all possible return values
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment