* Optimized usings

* Shortened type references
* Removed redundant 'this' qualifier
This commit is contained in:
lbsa71
2007-10-30 09:05:31 +00:00
parent c32d1f0562
commit 67e12b95ea
353 changed files with 15459 additions and 10338 deletions

View File

@@ -25,6 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
using libsecondlife;
using OpenSim.Framework.Console;
using OpenSim.Region.Environment.Scenes;
@@ -52,12 +53,12 @@ namespace OpenSim.Region.ExtensionsScriptModule
world = scene;
events = world.EventManager;
logger = MainLog.Instance;
api = new ScriptAPI(world, libsecondlife.LLUUID.Zero);
api = new ScriptAPI(world, LLUUID.Zero);
}
public void CreateTaskAPI(libsecondlife.LLUUID task)
public void CreateTaskAPI(LLUUID task)
{
api = new ScriptAPI(world, task);
}
}
}
}