On Thursday April 6, 2006 17:18, Milen Dzhumerov 
<[EMAIL PROTECTED]> wrote:
> I've been trying to compile a few simple classes with Ant and
> everything is fine except that it produces a class twice with the
> name: SqlErrorCond$1.class
> SqlErrorCond.class
> The files have different sizes.

Those are not the same class. 'SqlErrorCond$1.class' refers to an 
anonymous inner class of SqlErrorCond.class.

See:

<http://java.sun.com/docs/books/tutorial/java/javaOO/innerclasses.html>

or 

<http://www.faqs.org/docs/think_java/TIJ310.htm> 
    (search for "Inner class identifiers")

for more information on anonymous inner classes.

- Rob

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to