From 695a21fb909f6bd873633ccbac8345f9145d8252 Mon Sep 17 00:00:00 2001 From: Paul Hoffman Date: Wed, 3 Apr 2024 16:23:24 -0400 Subject: [PATCH] Remove unused code --- apis/r/R/TileDBArray.R | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/apis/r/R/TileDBArray.R b/apis/r/R/TileDBArray.R index 6fa8d6a861..6d942d1927 100644 --- a/apis/r/R/TileDBArray.R +++ b/apis/r/R/TileDBArray.R @@ -312,18 +312,6 @@ TileDBArray <- R6::R6Class( private = list( - # # Reopen the array in a different mode - # reopen = function(mode = c("READ", "WRITE")) { - # mode <- match.arg(mode) - # if (private$.mode == mode) { - # return(invisible(self)) - # } - # self$close() - # invisible( - # self$open(mode = mode, internal_use_only = "allowed_use") - # ) - # }, - # Internal pointer to the TileDB array. # # Important implementation note: