From 4213249665b40ba475e679eb1926b89a53e3ceae Mon Sep 17 00:00:00 2001 From: Kathy Gray Date: Wed, 16 Jan 2008 00:11:20 +0000 Subject: [PATCH] Correction to array runtime assignment error svn: r8340 --- collects/profj/libs/java/lang/Object-composite.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/profj/libs/java/lang/Object-composite.ss b/collects/profj/libs/java/lang/Object-composite.ss index 4a6fa49ca0..cc81b5cdcb 100644 --- a/collects/profj/libs/java/lang/Object-composite.ss +++ b/collects/profj/libs/java/lang/Object-composite.ss @@ -350,7 +350,7 @@ (case (runtime-type-type rt) ((byte short int long) (and (number? val) (not (inexact? val)))) ((char) (char? val)) - ((float double) (and (number? val) (inexact? val)))) + ((float double) (number? val) #;(and (number? val) (inexact? val)))) (is-a? val (runtime-type-type rt))) (and (is-a? val java-array)