Rename getSkinInternal() to getSkinInPath()

This commit is contained in:
hns 2005-06-02 08:18:44 +00:00
parent a9aadfe00c
commit 1c9bdff6af

View file

@ -55,7 +55,7 @@ public final class SkinManager implements FilenameFilter {
do {
if (skinpath != null) {
for (int i = 0; i < skinpath.length; i++) {
skin = getSkinInternal(skinpath[i], proto.getName(), skinname);
skin = getSkinInPath(skinpath[i], proto.getName(), skinname);
if (skin != null) {
return skin;
@ -79,7 +79,7 @@ public final class SkinManager implements FilenameFilter {
return null;
}
protected Skin getSkinInternal(Object skinset, String prototype, String skinname) throws IOException {
protected Skin getSkinInPath(Object skinset, String prototype, String skinname) throws IOException {
if ((prototype == null) || (skinset == null)) {
return null;
}