In #118966, we added ImageProvider.loadImage(). This method should be abstract in ImageProvider, but due to the need for backwards compatibility, it was made as a non-abstract method to allow subclasses time to migrate.
Once the deprecation period for the old method (loadBuffer()) is over and that method is removed, the base ImageProvider.loadImage() should be made abstract.
In #118966, we added
ImageProvider.loadImage(). This method should be abstract inImageProvider, but due to the need for backwards compatibility, it was made as a non-abstract method to allow subclasses time to migrate.Once the deprecation period for the old method (
loadBuffer()) is over and that method is removed, the baseImageProvider.loadImage()should be made abstract.