From 67922b887dfad19a073cdc7ee3bf87b8c7bed713 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 5 Nov 2013 10:42:01 -0500 Subject: [PATCH] remove Environment#targets() and Environment#target_sources() which didn't seem to be used --- lib/rscons/environment.rb | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/rscons/environment.rb b/lib/rscons/environment.rb index a999841..0428c16 100644 --- a/lib/rscons/environment.rb +++ b/lib/rscons/environment.rb @@ -122,16 +122,6 @@ module Rscons @varset.send(:append, *args) end - # Return a list of target file names - def targets - @targets.keys - end - - # Return a list of sources needed to build target target. - def target_sources(target) - @targets[target][:source] rescue nil - end - # Build all target specified in the Environment. # When a block is passed to Environment.new, this method is automatically # called after the block returns.