Skip to content

Commit 30b269c

Browse files
Disable plot printing in BuildPlots.R
1 parent f6b81f2 commit 30b269c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BenchmarkDotNet/Templates/BuildPlots.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ std.error <- function(x) sqrt(var(x)/length(x))
3535
cummean <- function(x) cumsum(x)/(1:length(x))
3636
BenchmarkDotNetVersionGrob <- textGrob(BenchmarkDotNetVersion, gp = gpar(fontface=3, fontsize=10), hjust=1, x=1)
3737
nicePlot <- function(p) grid.arrange(p, bottom = BenchmarkDotNetVersionGrob)
38-
printNice <- function(p) print(nicePlot(p))
38+
printNice <- function(p) {} # print(nicePlot(p))
3939
ggsaveNice <- function(fileName, p, ...) {
4040
cat(paste0("*** Plot: ", fileName, " ***\n"))
4141
ggsave(fileName, plot = nicePlot(p), ...)

0 commit comments

Comments
 (0)