Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
remove accidental browser
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelS1 committed Sep 1, 2023
1 parent e65ffee commit a901255
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
1 change: 0 additions & 1 deletion R/Set.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit a901255

Please sign in to comment.