From a901255c26614a0ece317dc849621420f9393d42 Mon Sep 17 00:00:00 2001 From: RaphaelS1 Date: Fri, 1 Sep 2023 11:07:16 +0100 Subject: [PATCH] remove accidental browser --- DESCRIPTION | 2 +- NEWS.md | 4 ++++ R/Set.R | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 7ffec17..51d39ec 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: set6 Title: R6 Mathematical Sets Interface -Version: 0.2.5 +Version: 0.2.6 Authors@R: c(person(given = "Raphael", family = "Sonabend", diff --git a/NEWS.md b/NEWS.md index b23f559..e2a3720 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# set6 0.2.6 + +* Remove accidental browser + # set6 0.2.5 * Fixes bug that set all comparisons to empty sets as `TRUE` when using `$equals` diff --git a/R/Set.R b/R/Set.R index 0661de8..936b5a9 100644 --- a/R/Set.R +++ b/R/Set.R @@ -244,7 +244,6 @@ Set <- R6Class("Set", equals = function(x, all = FALSE) { x <- listify(x) ret <- sapply(x, function(y) { - browser() if (!testSet(y)) { return(FALSE) }