Revert "Set methods on Options already return Options instances"

This reverts commit 4d1464c246861f7aedc355cb5f6360370d05114e.
This commit is contained in:
Mike McQuaid 2014-08-13 08:45:08 +01:00
parent 1e852a8f3f
commit d4aa7b8df0

View File

@ -66,11 +66,11 @@ class BuildOptions
end end
def used_options def used_options
@options & @args Options.new(@options & @args)
end end
def unused_options def unused_options
@options - @args Options.new(@options - @args)
end end
private private