I've recently pulled down a much newer version of a large project, updated to use a new (well new-er) version of Java (11 instead of 8). However I'm getting an error on the following import:
import sun.java2d.cmm.ProfileDeferralMgr;
And an error of "The import sun.java2d.cmm cannot be resolved"
My various googling, although it produces plenty of blah-blah-blah about sun.java2d.cmm, has not yet told me anything about where I'm supposed to get the package from.
Is this a package that I'm supposed to already "have" and I somehow don't have Eclipse set up to find it? Or is it something that I'm supposed to go "get" and download (if so does anyone know where?)
I'm using 14.0.1 SDK, and I've set it to build target for Java 11 (which is what this project is supposed to be built for as its minspec).
Any help much appreciated!