R
Roedy Green
I was doing some subtraction in sort Comparators, when I noticed a
method Integer.compare that would handle the nice cases properly.
I thought to myself, I wonder why I never noticed that before. (Turns
out it was introduced in 1.7).
The catch was though that Jet stopped working.
Why?
Jet only supports up to Java 1.6.
When I compile with switches to generate Java 1.6 code, it is happy to
use new 1.7 code from the library. It then generates class files and
jars marked as legit 1.6 code. Ouch!
The official way to do this is to find old rt.jars to generate old
code. Is that the best way to catch these errors?
--
Roedy Green Canadian Mind Products
http://mindprod.com
I would be quite surprised if the NSA (National Security Agency)
did not have a computer program to scan bits of shredded
documents and electronically put them back together like a giant
jigsaw puzzle. This suggests you cannot just shred, you must also burn.
..
method Integer.compare that would handle the nice cases properly.
I thought to myself, I wonder why I never noticed that before. (Turns
out it was introduced in 1.7).
The catch was though that Jet stopped working.
Why?
Jet only supports up to Java 1.6.
When I compile with switches to generate Java 1.6 code, it is happy to
use new 1.7 code from the library. It then generates class files and
jars marked as legit 1.6 code. Ouch!
The official way to do this is to find old rt.jars to generate old
code. Is that the best way to catch these errors?
--
Roedy Green Canadian Mind Products
http://mindprod.com
I would be quite surprised if the NSA (National Security Agency)
did not have a computer program to scan bits of shredded
documents and electronically put them back together like a giant
jigsaw puzzle. This suggests you cannot just shred, you must also burn.
..