diff options
author | Justin Clark-Casey (justincc) | 2011-09-24 02:22:47 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-09-24 02:22:47 +0100 |
commit | 8caf3ed49ec3403843e25db018cc9db63e2ca643 (patch) | |
tree | 961d9ced0a17da6f60222e2c3590620a66c51b8a /OpenSim/Region/Application/OpenSim.cs | |
parent | Removed uncalled region load method. (diff) | |
download | opensim-SC_OLD-8caf3ed49ec3403843e25db018cc9db63e2ca643.zip opensim-SC_OLD-8caf3ed49ec3403843e25db018cc9db63e2ca643.tar.gz opensim-SC_OLD-8caf3ed49ec3403843e25db018cc9db63e2ca643.tar.bz2 opensim-SC_OLD-8caf3ed49ec3403843e25db018cc9db63e2ca643.tar.xz |
Remove the unimplented "clear assets" command.
This was a bizarre relic of a bygone age that had no implementations.
If you're using and want to clear the flotsam asset cache then please use the existing "fcache clear" command
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index e5b9dcb..09958b1 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -210,10 +210,6 @@ namespace OpenSim | |||
210 | /// </summary> | 210 | /// </summary> |
211 | private void RegisterConsoleCommands() | 211 | private void RegisterConsoleCommands() |
212 | { | 212 | { |
213 | m_console.Commands.AddCommand("region", false, "clear assets", | ||
214 | "clear assets", | ||
215 | "Clear the asset cache", HandleClearAssets); | ||
216 | |||
217 | m_console.Commands.AddCommand("region", false, "force update", | 213 | m_console.Commands.AddCommand("region", false, "force update", |
218 | "force update", | 214 | "force update", |
219 | "Force the update of all objects on clients", | 215 | "Force the update of all objects on clients", |
@@ -509,11 +505,6 @@ namespace OpenSim | |||
509 | } | 505 | } |
510 | } | 506 | } |
511 | 507 | ||
512 | private void HandleClearAssets(string module, string[] args) | ||
513 | { | ||
514 | MainConsole.Instance.Output("Not implemented."); | ||
515 | } | ||
516 | |||
517 | /// <summary> | 508 | /// <summary> |
518 | /// Force resending of all updates to all clients in active region(s) | 509 | /// Force resending of all updates to all clients in active region(s) |
519 | /// </summary> | 510 | /// </summary> |