Eh? I just changed this the other day to have the (Object) reference in front because things were NOT compiling for someone using Jbuilder... -jon on 6/17/01 8:14 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > jvanzyl 01/06/17 08:14:52 > > Modified: src/java/org/apache/turbine/util/db CriteriaTest.java > Log: > - small fix to allow compilation. > > Revision Changes Path > 1.6 +2 -2 > jakarta-turbine/src/java/org/apache/turbine/util/db/CriteriaTest.java > > Index: CriteriaTest.java > =================================================================== > RCS file: > /home/cvs/jakarta-turbine/src/java/org/apache/turbine/util/db/CriteriaTest.jav > a,v > retrieving revision 1.5 > retrieving revision 1.6 > diff -u -r1.5 -r1.6 > --- CriteriaTest.java 2001/06/13 00:04:19 1.5 > +++ CriteriaTest.java 2001/06/17 15:14:52 1.6 > @@ -63,7 +63,7 @@ > * Test class for Criteria. > * > * @author <a href="mailto:[EMAIL PROTECTED]">Christopher Elkins</a> > - * @version $Id: CriteriaTest.java,v 1.5 2001/06/13 00:04:19 jon Exp $ > + * @version $Id: CriteriaTest.java,v 1.6 2001/06/17 15:14:52 jvanzyl Exp $ > */ > public class CriteriaTest extends BaseTestCase > { > @@ -99,7 +99,7 @@ > final String value = "myValue"; > > // Add the string > - c.add(table, (Object)column, (Object)value); > + c.add(table, column, (Object)value); > > // Verify that the key exists > assert(c.containsKey(table, column)); > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] -- "Open source is not available to commercial companies." -Steve Ballmer, CEO Microsoft <http://www.suntimes.com/output/tech/cst-fin-micro01.html> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
