* PROTIP: It helps to know what your doing when playing with reflection.
parent
813cdd0c80
commit
aebd58d75e
|
@ -37,8 +37,6 @@ namespace OpenSim.Region.Environment
|
|||
foreach (Type pluginType in pluginAssembly.GetTypes())
|
||||
{
|
||||
if (pluginType.IsPublic)
|
||||
{
|
||||
if (!pluginType.IsAbstract)
|
||||
{
|
||||
Type typeInterface = pluginType.GetInterface("IRegionDataStore", true);
|
||||
|
||||
|
@ -53,7 +51,6 @@ namespace OpenSim.Region.Environment
|
|||
typeInterface = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pluginAssembly = null;
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ using libsecondlife;
|
|||
|
||||
namespace OpenSim.DataStore.NullStorage
|
||||
{
|
||||
class NullDataStore : IRegionDataStore
|
||||
public class NullDataStore : IRegionDataStore
|
||||
{
|
||||
public void Initialise(string dbfile, string dbname)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue