--- Scott Coleman <[EMAIL PROTECTED]> wrote: > I have seen that the source option is supported, but I have not seen any > support for assert's. Therefore I just wished to confirm that asserts > are not supported and I would add the code for them.
Well, I know nothing about Java assertions, other than what I found the other day on Sun's Java site, looking for an answer to your initial question. This is what I found that made me think <javac> was taken care of: In order for the javac bytecode compiler to accept code containing assertions, you must use the -source 1.4 command-line option as in this example: javac -source 1.4 MyClass.java Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>