[hg] galaxy 3149: Remove two unused properties.
details: http://www.bx.psu.edu/hg/galaxy/rev/17094e499e9b changeset: 3149:17094e499e9b user: Dan Blankenberg <dan@bx.psu.edu> date: Mon Dec 07 11:30:53 2009 -0500 description: Remove two unused properties. diffstat: lib/galaxy/tools/__init__.py | 1 - lib/galaxy/tools/parameters/basic.py | 1 - 2 files changed, 0 insertions(+), 2 deletions(-) diffs (22 lines): diff -r d279017969cd -r 17094e499e9b lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py Mon Dec 07 10:19:41 2009 -0500 +++ b/lib/galaxy/tools/__init__.py Mon Dec 07 11:30:53 2009 -0500 @@ -300,7 +300,6 @@ self.tool_type = root.get( "tool_type", None ) #Force history to fully refresh after job execution for this tool. Useful i.e. when an indeterminate number of outputs are created by a tool. self.force_history_refresh = util.string_as_bool( root.get( 'force_history_refresh', 'False' ) ) - self.param_trans_dict = {} #make this a property of all Tools, so don't need to check if tool is datasource, just if it is populated #load input translator, used by datasource tools to change names/values of incoming parameters self.input_translator = root.find( "request_param_translation" ) if self.input_translator: diff -r d279017969cd -r 17094e499e9b lib/galaxy/tools/parameters/basic.py --- a/lib/galaxy/tools/parameters/basic.py Mon Dec 07 10:19:41 2009 -0500 +++ b/lib/galaxy/tools/parameters/basic.py Mon Dec 07 11:30:53 2009 -0500 @@ -30,7 +30,6 @@ self.type = param.get("type") self.label = util.xml_text(param, "label") self.help = util.xml_text(param, "help") - self.unsanitize = param.get( "unsanitize", None ) ### This doesn't looked to be used anywhere... REMOVE ME? self.sanitizer = param.find( "sanitizer" ) if self.sanitizer is not None: self.sanitizer = ToolParameterSanitizer.from_element( self.sanitizer )
participants (1)
-
Greg Von Kuster