From 37d03a444d1a08a9eecc7cbc86724287250edd27 Mon Sep 17 00:00:00 2001 From: Oskar Eichler Date: Fri, 28 Aug 2026 07:49:13 +0300 Subject: [PATCH] Stop retaining the unused original options hash --- lib/uber/options.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/uber/options.rb b/lib/uber/options.rb index fa98b54..63012f5 100644 --- a/lib/uber/options.rb +++ b/lib/uber/options.rb @@ -4,8 +4,6 @@ module Uber class Options < Hash def initialize(options) - @static = options - options.each do |k,v| self[k] = Option[v, instance_exec: true] end