mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
Update svn properties. Formatting cleanup.
This commit is contained in:
@@ -3298,8 +3298,11 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
result.Add(src.Substring(start,length).Trim());
|
||||
start += length+1;
|
||||
length = 0;
|
||||
} else
|
||||
}
|
||||
else
|
||||
{
|
||||
length++;
|
||||
}
|
||||
break;
|
||||
default :
|
||||
length++;
|
||||
@@ -5301,7 +5304,8 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
{
|
||||
// not present at all
|
||||
active[j] = false;
|
||||
} else
|
||||
}
|
||||
else
|
||||
{
|
||||
// present and correct
|
||||
if (offset[j] < offset[best])
|
||||
@@ -5329,10 +5333,11 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
|
||||
tokens.Add(src.Substring(beginning,offset[best]-beginning));
|
||||
|
||||
if (best<seplen)
|
||||
if (best < seplen)
|
||||
{
|
||||
beginning = offset[best]+((string)separray[best]).Length;
|
||||
} else
|
||||
}
|
||||
else
|
||||
{
|
||||
beginning = offset[best]+((string)spcarray[best-seplen]).Length;
|
||||
tokens.Add(spcarray[best-seplen]);
|
||||
|
||||
@@ -80,11 +80,11 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine
|
||||
TaskInventoryItem taskInventoryItem = new TaskInventoryItem();
|
||||
if(m_host.TaskInventory.TryGetValue(itemID,out taskInventoryItem))
|
||||
assetID = taskInventoryItem.AssetID;
|
||||
|
||||
|
||||
|
||||
try
|
||||
{
|
||||
// Xantor 20080525 see if we already compiled this script this session, stop incessant recompiling on
|
||||
// Xantor 20080525 see if we already compiled this script this session, stop incessant recompiling on
|
||||
// scriptreset, spawning of objects with embedded scripts etc.
|
||||
|
||||
if (scriptList.TryGetValue(assetID, out CompiledScriptFile))
|
||||
|
||||
Reference in New Issue
Block a user