Changeset 12508 in josm


Ignore:
Timestamp:
2017-07-25T00:15:53+02:00 (7 years ago)
Author:
Don-vip
Message:

fix #13973 - catch unexplainable "UnsatisfiedLinkError: no awt in java.library.path"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/ImageProvider.java

    r12131 r12508  
    17911791            // JAI doesn't like some JPEG files with error "Inconsistent metadata read from stream" (see #10267)
    17921792            Main.warn(e);
     1793        } catch (UnsatisfiedLinkError e) {
     1794            // On Windows, ComponentColorModel.getRGBComponent can fail with "UnsatisfiedLinkError: no awt in java.library.path", see #13973
     1795            Main.error(e);
    17931796        }
    17941797        return null;
Note: See TracChangeset for help on using the changeset viewer.