diff --git a/product/ERP5/Document/Project.py b/product/ERP5/Document/Project.py
index ade1bd183d1216d59cf13ada9d37c22e66a56d4f..577411aa20ef5dca236d0da6ab226874e63ffdc8 100644
--- a/product/ERP5/Document/Project.py
+++ b/product/ERP5/Document/Project.py
@@ -64,48 +64,3 @@ class Project(Order):
     # Declarative Interface
     __implements__ = ( )
 
-    # Factory Type Information
-    factory_type_information = \
-        {  'id'             : portal_type
-         , 'meta_type'      : meta_type
-         , 'description'    : 'Use Project to define projects in consulting firm'
-         , 'icon'           : 'document_icon.gif'
-         , 'product'        : 'ERP5'
-         , 'factory'        : 'addProject'
-         , 'immediate_view' : 'project_view'
-         , 'allow_discussion'     : 1
-         , 'allowed_content_types': ('Order Line',
-                                      )
-         , 'actions'        :
-        ( { 'id'            : 'view'
-          , 'name'          : 'View'
-          , 'action'        : 'project_view'
-          , 'category'      : 'object_view'
-          , 'permissions'   : (
-              Permissions.View, )
-          }
-        , { 'id'            : 'print'
-          , 'name'          : 'Print'
-          , 'action'        : 'project_print'
-          , 'category'      : 'object_print'
-          , 'permissions'   : (
-              Permissions.View, )
-          }
-        , { 'id'            : 'metadata'
-          , 'name'          : 'Metadata'
-          , 'action'        : 'metadata_view'
-          , 'category'      : 'object_view'
-          , 'permissions'   : (
-              Permissions.ModifyPortalContent, )
-          }
-        , { 'id'            : 'translate'
-          , 'name'          : 'Translate'
-          , 'action'        : 'translation_template'
-          , 'category'      : 'object_action'
-          , 'permissions'   : (
-              Permissions.View, )
-          }
-        )
-        }
-
-