changeset 61:2d7464119dd0

Removed legacy product-related code.
author Atul Varma <varmaa@toolness.com>
date Wed, 27 Feb 2008 21:31:34 -0800
parents 09cc6fd3ddd2
children f1564d6bb03b
files enso/ui/commands/interfaces.py
diffstat 1 files changed, 1 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/enso/ui/commands/interfaces.py	Wed Feb 27 11:35:04 2008 -0800
+++ b/enso/ui/commands/interfaces.py	Wed Feb 27 21:31:34 2008 -0800
@@ -102,8 +102,7 @@
     take arguments).
 
     This class is a placeholder ancestor class that holds
-    functionality (e.g., product association) common to both kinds of
-    implementations.
+    functionality common to both kinds of implementations.
     """
 
     def __init__( self ):
@@ -111,19 +110,12 @@
         Initializes the command implementation object.
         """
         
-        self.__products = []
         self.__description = None
         self.__helpText = None
 
     # LONGTERM TODO: Consider using Python's property() function
     # for providing access to these data members.
     
-    def addProduct( self, productId ):
-        self.__products.append( productId )
-
-    def getProducts( self ):
-        return self.__products
-    
     def setDescription( self, descr ):
         self.__description = descr