Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d1e103 commit 390f433Copy full SHA for 390f433
java2python/config/default.py
@@ -153,7 +153,7 @@
153
(Type('TYPE') > Type('BOOLEAN'), transform.typeSub),
154
(Type('TYPE') > Type('BYTE'), transform.typeSub),
155
(Type('TYPE') > Type('CHAR'), transform.typeSub),
156
- (Type('TYPE') > Type('DOUBLE'), transform.typeSub),
+ (Type('TYPE') > Type('FLOAT'), transform.typeSub),
157
(Type('TYPE') > Type('INT'), transform.typeSub),
158
(Type('TYPE') > Type('SHORT'), transform.typeSub),
159
(Type('TYPE') > Type('LONG'), transform.typeSub),
@@ -223,6 +223,9 @@
223
'Long' : 'long',
224
'long' : 'long',
225
226
+ 'Float' : 'float',
227
+ 'float' : 'float',
228
+
229
'Double' : 'float',
230
'double' : 'float',
231
0 commit comments