Ralph Goers wrote:
Vadim Gritsenko wrote:
Won't it fail later on here?
final Boolean canRunConcurrentlyB = ((Boolean) data.get(QuartzJobScheduler.DATA_MAP_RUN_CONCURRENT));
Vadim
No. There are multiple versions of the put method. The one that takes boolean actually creates a Boolean and stores it. I changed it because IntelliJ was complaining that it couldn't figure out whether to use put(Object, Object) or put(String, boolean). Presumably this shows up as a warning somewhere during compilation.
Ralph
I wondered why I don't see this in my IntelliJ project for BRANCH_2_1_X. It turns out I have the language level for 2.1.x set to 1.3. For the trunk project it is set to 5.0.
Ralph