Merge pull request #9429 from abextm/imageio-cache

runelite-client: Don't write all images to disk when loading them
This commit is contained in:
Adam
2019-07-23 20:28:59 -04:00
committed by GitHub

View File

@@ -52,6 +52,11 @@ import net.runelite.api.SpritePixels;
@Slf4j
public class ImageUtil
{
static
{
ImageIO.setUseCache(false);
}
/**
* Creates a {@link BufferedImage} from an {@link Image}.
*