Can't compile class using library
Hi!
I have a simple class which uses library A. This library uses another library B in turn. When I try to complie the classs with javac, I get the message 'cannot access C. file C.class not found'
C is the name of the class from library B. I wonder why the compiler need the library B to compile my class which does not have references to it. Library A have such references but I'm not compiling it, I'm compiling my class. It looks like the bug in javac.
JDK 1.4.2_07

