You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Handle paths illegal on Windows in ImageDescriptor.createFromFile()
Handle filenames, that are used as file-system paths because the context
class is null and are illegal on Windows, for example like:
/C:/data/other
This happens if retrieved from a URL/URI by just using
'URL/URI.getPath()' instead of using 'Path.of(uri)' or 'new File(uri)'.
Using IPath.fromOSString() instead of Path.of(), allows to use these
kind of illegal paths.
0 commit comments