From 18dbec3dd8f4ac309f8900f2a2738c89248075d2 Mon Sep 17 00:00:00 2001 From: hns Date: Thu, 2 Jun 2005 20:27:40 +0000 Subject: [PATCH] Fix two minor bugs that keep everything from working. --- src/helma/framework/core/Prototype.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/helma/framework/core/Prototype.java b/src/helma/framework/core/Prototype.java index d858eca2..a561a61b 100644 --- a/src/helma/framework/core/Prototype.java +++ b/src/helma/framework/core/Prototype.java @@ -313,8 +313,8 @@ public final class Prototype { * residing in the prototype directory, not for skins files in * other locations or database stored skins. */ - public Skin getSkin(String sname) throws IOException { - return skinMap.getSkin(name); + public Skin getSkin(String skinName) throws IOException { + return skinMap.getSkin(skinName); } /** @@ -448,7 +448,7 @@ public final class Prototype { } public Skin getSkin(Object key) throws IOException { - Resource res = (Resource) super.get(key); + Resource res = (Resource) get(key); if (res != null) { return Skin.getSkin(res, app);