use standard sdk stack in terrain model rather than OpenSim.Framework.UndoStack.

remove OpenSim.Framework.UndoStack
This commit is contained in:
Justin Clark-Casey (justincc)
2011-07-18 02:06:06 +01:00
parent 3f8e571b78
commit aec3b58a57
2 changed files with 1 additions and 153 deletions

View File

@@ -84,7 +84,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain
private ITerrainChannel m_revert;
private Scene m_scene;
private volatile bool m_tainted;
private readonly UndoStack<LandUndoState> m_undo = new UndoStack<LandUndoState>(5);
private readonly Stack<LandUndoState> m_undo = new Stack<LandUndoState>(5);
#region ICommandableModule Members