Removed everything related to the _skinmanager property

which isn't used anymore.
This commit is contained in:
hns 2002-03-25 18:49:41 +00:00
parent 4e0182bfda
commit 847f2542d3

View file

@ -39,11 +39,8 @@ public class DbMapping implements Updatable {
// list of properties to try for parent // list of properties to try for parent
ParentInfo[] parent; ParentInfo[] parent;
// list of properties to try as skinmanager
String[] skinmgr;
// DbMapping subnodes; // Relations describing subnodes and properties.
// DbMapping properties;
Relation subnodesRel; Relation subnodesRel;
Relation propertiesRel; Relation propertiesRel;
@ -179,15 +176,6 @@ public class DbMapping implements Updatable {
} else } else
parent = null; parent = null;
String skm = props.getProperty ("_skinmanager");
if (skm != null) {
StringTokenizer st = new StringTokenizer (skm, ",;");
skinmgr = new String[st.countTokens()];
for (int i=0; i<skinmgr.length; i++)
skinmgr[i] = st.nextToken().trim();
} else
skinmgr = null;
lastTypeChange = props.lastModified (); lastTypeChange = props.lastModified ();
// set the cached schema & keydef to null so it's rebuilt the next time around // set the cached schema & keydef to null so it's rebuilt the next time around
schema = null; schema = null;
@ -461,15 +449,6 @@ public class DbMapping implements Updatable {
return parent; return parent;
} }
/**
* Return a list of properties of this object which represent skin managers. Skin managers
* are objects structures which allow applications to override the application level skins (templates)
* with user-controlled skins stored in a database.
*/
public String[] getSkinManagers () {
return skinmgr;
}
public DbMapping getSubnodeMapping () { public DbMapping getSubnodeMapping () {
if (subnodesRel != null) if (subnodesRel != null)