File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 60
60
import com .oracle .graal .python .builtins .CoreFunctions ;
61
61
import com .oracle .graal .python .builtins .PythonBuiltinClassType ;
62
62
import com .oracle .graal .python .builtins .PythonBuiltins ;
63
- import com .oracle .graal .python .builtins .modules .BuiltinConstructorsFactory .FloatNodeFactory ;
64
63
import com .oracle .graal .python .builtins .objects .PEllipsis ;
65
64
import com .oracle .graal .python .builtins .objects .PNone ;
66
65
import com .oracle .graal .python .builtins .objects .PNotImplemented ;
@@ -509,7 +508,7 @@ protected static FromNativeSubclassNode cacheGetFloat() {
509
508
}
510
509
511
510
@ Specialization
512
- Object doNativeFloat (PythonNativeClass cls , PythonNativeObject possibleBase ,
511
+ Object doNativeFloat (@ SuppressWarnings ( "unused" ) PythonNativeClass cls , PythonNativeObject possibleBase ,
513
512
@ Cached ("cacheGetFloat()" ) FromNativeSubclassNode getFloat ) {
514
513
Object convertedFloat = getFloat .execute (possibleBase );
515
514
if (convertedFloat instanceof Double ) {
You can’t perform that action at this time.
0 commit comments