Revision: 3593
Author: pekka.klarck
Date: Thu May 27 11:11:10 2010
Log: fix
http://code.google.com/p/robotframework/source/detail?r=3593
Modified:
/trunk/src/robot/utils/robottypes.py
=======================================
--- /trunk/src/robot/utils/robottypes.py Thu May 27 07:11:21 2010
+++ /trunk/src/robot/utils/robottypes.py Thu May 27 11:11:10 2010
@@ -42,8 +42,6 @@
_type_dict = dict([ (getattr(types,attr), attr) for attr in dir(types)
if not attr.startswith('_') and attr != 'StringTypes'
])
-if os.name == 'java':
- _type_dict[array.ArrayType] = 'ArrayType'
_printable_type_mapping = {
'StringType' : 'string',
@@ -57,7 +55,6 @@
'LongType' : 'integer',
'BooleanType' : 'boolean',
'FloatType' : 'floating point number',
- 'ArrayType' : 'array'
}