aboutsummaryrefslogtreecommitdiff
path: root/src/Java/binnie/craftgui/resource/StyleSheet.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/binnie/craftgui/resource/StyleSheet.java')
-rw-r--r--src/Java/binnie/craftgui/resource/StyleSheet.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/Java/binnie/craftgui/resource/StyleSheet.java b/src/Java/binnie/craftgui/resource/StyleSheet.java
deleted file mode 100644
index 8685abd5be..0000000000
--- a/src/Java/binnie/craftgui/resource/StyleSheet.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package binnie.craftgui.resource;
-
-import java.util.HashMap;
-import java.util.Map;
-
-public class StyleSheet
- implements IStyleSheet
-{
- protected Map<Object, Texture> textures = new HashMap();
-
- public Texture getTexture(Object key)
- {
- if (!this.textures.containsKey(key)) {
- return StyleSheetManager.getTexture(key);
- }
- return (Texture)this.textures.get(key);
- }
-}