marc fleury wrote:
>>   Simple is good

mf> right 

>>   +           return javaVersion.startsWith("1.3");

mf> :)))

mf> thereyougo! TYG

mf> marc

That's too simple :-)
What would you do when JDK 1.4 comes?
How about
    return (javaVersion.compareTo("1.3") >= 0);
It would work until JDK 1.10 :-)
    
Best regards,
 Oleg 



Reply via email to