|
Description
|
when setting a different Locale, say "tr" for Turkish,
JAI opertor names are no longer case insensitive,
especially in Turkish, "i" and "I" are not related.
Using the following sample code to reproduce the problem.
John
import java.util.Locale;
import javax.media.jai.JAI;
public final class JAIBug {
public static void main (String args[]) {
Locale.setDefault(new Locale("tr","TR"));
JAI.getDefaultInstance().getOperationRegistry();
}
}
|