Yengine: only retry compile if there was a object file in cache with wrong version or signature

This commit is contained in:
UbitUmarov
2018-03-09 22:44:58 +00:00
parent 2dc49dc1e9
commit 2369ce413d
4 changed files with 6 additions and 18 deletions

View File

@@ -6540,14 +6540,8 @@ namespace OpenSim.Region.ScriptEngine.Yengine
public class CVVMismatchException: Exception
{
public int oldcvv;
public int newcvv;
public CVVMismatchException(int oldcvv, int newcvv) : base("object version is " + oldcvv.ToString() +
" but accept only " + newcvv.ToString())
public CVVMismatchException(string msg) : base(msg)
{
this.oldcvv = oldcvv;
this.newcvv = newcvv;
}
}
}