From 015acd1c4a693a06b5ad800e91b4175f2249ec01 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 19 Aug 2018 10:59:04 +0200 Subject: Remove unused variable Signed-off-by: Florian Pritz --- lib/App/BorgRestore/DB.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/App/BorgRestore/DB.pm b/lib/App/BorgRestore/DB.pm index e8f1ce3..0c6c057 100644 --- a/lib/App/BorgRestore/DB.pm +++ b/lib/App/BorgRestore/DB.pm @@ -35,7 +35,7 @@ method new($class: $db_path, $cache_size) { # ensure the cache directory exists path($db_path)->parent->mkpath({mode => oct(700)}); - my $db = $self->_open_db($db_path); + $self->_open_db($db_path); $self->initialize_db(); } else { $self->_open_db($db_path); -- cgit v1.2.3-24-g4f1b