From: markt Date: Fri, 15 Jan 2010 19:22:42 +0000 (+0000) Subject: Fix TCK failure. Trying to assign an object of the wrong type to an array should... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=11385203cffd7632f0e01953bb71d0ef22c3baeb;p=tomcat7.0 Fix TCK failure. Trying to assign an object of the wrong type to an array should throw a ClassCaseException. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@899770 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/javax/el/LocalStrings.properties b/java/javax/el/LocalStrings.properties index 92db77a2e..2a753d7dc 100644 --- a/java/javax/el/LocalStrings.properties +++ b/java/javax/el/LocalStrings.properties @@ -22,3 +22,4 @@ propertyNotWritable=Property ''{1}'' not writable on type {0} propertyReadError=Error reading ''{1}'' on type {0} propertyWriteError=Error writing ''{1}'' on type {0} resolverNotWritable=ELResolver not writable for type {0} +objectNotAssignable=Unable to add an object of type [{0}] to an array of objects of type [{1}]