diff options
author | Sean Dague | 2007-09-10 13:34:20 +0000 |
---|---|---|
committer | Sean Dague | 2007-09-10 13:34:20 +0000 |
commit | a1be7f4be50a645be22eb7d80679530906e8aeba (patch) | |
tree | e1171b08f6fff26e0f6fbb95a936054e956b8e19 /OpenSim/Framework/General | |
parent | mass update of urls in source code to new website (diff) | |
download | opensim-SC_OLD-a1be7f4be50a645be22eb7d80679530906e8aeba.zip opensim-SC_OLD-a1be7f4be50a645be22eb7d80679530906e8aeba.tar.gz opensim-SC_OLD-a1be7f4be50a645be22eb7d80679530906e8aeba.tar.bz2 opensim-SC_OLD-a1be7f4be50a645be22eb7d80679530906e8aeba.tar.xz |
added some debugging for tracing where asset code isn't working with sqlite
Diffstat (limited to 'OpenSim/Framework/General')
-rw-r--r-- | OpenSim/Framework/General/Types/AssetBase.cs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/OpenSim/Framework/General/Types/AssetBase.cs b/OpenSim/Framework/General/Types/AssetBase.cs index 887594e..ddd033f 100644 --- a/OpenSim/Framework/General/Types/AssetBase.cs +++ b/OpenSim/Framework/General/Types/AssetBase.cs | |||
@@ -35,15 +35,14 @@ namespace OpenSim.Framework.Types | |||
35 | public LLUUID FullID; | 35 | public LLUUID FullID; |
36 | public sbyte Type; | 36 | public sbyte Type; |
37 | public sbyte InvType; | 37 | public sbyte InvType; |
38 | public string Name; | 38 | public string Name = ""; |
39 | public string Description; | 39 | public string Description = ""; |
40 | public bool Local; | 40 | public bool Local = false; |
41 | public bool Temporary; | 41 | public bool Temporary = false; |
42 | 42 | ||
43 | public AssetBase() | 43 | public AssetBase() |
44 | { | 44 | { |
45 | Name = " "; | 45 | |
46 | Description = " "; | ||
47 | } | 46 | } |
48 | } | 47 | } |
49 | } | 48 | } |