--- old/src/java.desktop/share/classes/sun/awt/image/ImagingLib.java 2020-05-20 18:01:43.720065285 -0700 +++ new/src/java.desktop/share/classes/sun/awt/image/ImagingLib.java 2020-05-20 18:01:43.384058832 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -94,15 +94,12 @@ public Boolean run() { String arch = System.getProperty("os.arch"); - if (arch == null || !arch.startsWith("sparc")) { - try { - System.loadLibrary("mlib_image"); - } catch (UnsatisfiedLinkError e) { - return Boolean.FALSE; - } - + try { + System.loadLibrary("mlib_image"); + } catch (UnsatisfiedLinkError e) { + return Boolean.FALSE; } - boolean success = init(); + boolean success = init(); return Boolean.valueOf(success); } };