This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I am working on a eclipse project for which default build project library is 1.5 but compliance level is 1.4.
From above configuration what I understood is that the project will be build with 1.4 compatibility and build the same way as that of JDK 1.4 library.
In my program I am using java.util.concurrent.CopyOnWriteArraySet which was introduced in jdk 1.5. When I compile my code with above setting it gets compiled properly.
But when I point my default workspace library to 1.4 with compliance level as 1.4 it shows error for the same.
What is the difference between setting the build library JRE and compiler compliance