mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-29 15:55:37 +01:00
Progress on WriterMode. Project export package now create
deterministically-ordered JSON. Should make nicer diffs.
This commit is contained in:
@@ -2,7 +2,7 @@ package com.gpl.rpg.atcontentstudio.ui;
|
||||
|
||||
import java.awt.Image;
|
||||
import java.io.IOException;
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import javax.imageio.ImageIO;
|
||||
@@ -11,8 +11,8 @@ import com.gpl.rpg.atcontentstudio.Notification;
|
||||
|
||||
public class DefaultIcons {
|
||||
|
||||
private static Map<String, Image> imageCache = new HashMap<String, Image>();
|
||||
private static Map<String, Image> iconCache = new HashMap<String, Image>();
|
||||
private static Map<String, Image> imageCache = new LinkedHashMap<String, Image>();
|
||||
private static Map<String, Image> iconCache = new LinkedHashMap<String, Image>();
|
||||
|
||||
|
||||
private static String MAIN_ICON_RES = "/com/gpl/rpg/atcontentstudio/img/andorstrainer.png";
|
||||
|
||||
Reference in New Issue
Block a user