7120895: FontConfiguration should not use thread contextClassLoader

Reviewed-by: igor, prr
This commit is contained in:
Andrew Brygin 2012-05-31 12:15:22 +04:00
parent 1b6a45d291
commit 458f3269dd

View File

@ -947,7 +947,7 @@ public abstract class FontConfiguration {
public Object run() {
try {
return Class.forName(charsetName, true,
Thread.currentThread().getContextClassLoader());
ClassLoader.getSystemClassLoader());
} catch (ClassNotFoundException e) {
}
return null;