Commit 59053b00 authored by Vincent Pelletier's avatar Vincent Pelletier

Remove commented out code.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@25894 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 84830dd5
......@@ -95,10 +95,6 @@ class caching_class_method_decorator:
def __call__(self, method):
caching_method = CachingMethod(method, *self.args, **self.kw)
return lambda *args, **kw: caching_method(*args, **kw)
#def wrapper(wrapped_self):
# LOG('caching_class_method_decorator', 0, 'lookup')
# return caching_method(wrapped_self)
#return wrapper
try:
from Products.ERP5Type.TransactionalVariable import getTransactionalVariable
......@@ -911,7 +907,6 @@ class Catalog(Folder,
try:
method_name = self.sql_catalog_schema
method = getattr(self, method_name)
#LOG('_getCatalogSchema', 0, 'method_name = %r, method = %r, table = %r' % (method_name, method, table))
search_result = method(table=table)
for c in search_result:
result_list.append(c.Field)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment