tags:

views:

29

answers:

1

I'm using JBuilder 6 and running against Java 1.3

I'm migrating to Java 5

Do I need a more modern version of JBuilder to run against Java 5?

+1  A: 

Yes. Primarily to support the syntax sugar added in Java 5 like Generics and the enhanced for loop.

Gregg
But if I'm migrating an application that does not use these features could I get away with it
AJM