I'm going to need the Version property to manage

migrating from the old to the new system.  Silly legacy
code.
This commit is contained in:
Sean Dague
2008-06-10 23:17:18 +00:00
parent 68cda63761
commit be400d1bd0

View File

@@ -156,6 +156,12 @@ namespace OpenSim.Data
return max;
}
public int Version
{
get { return FindVersion(_type); }
set { UpdateVersion(_type, value); }
}
private int FindVersion(string type)
{
int version = 0;