diff --git a/OpenSim/Data/SQLite/SQLiteAssetData.cs b/OpenSim/Data/SQLite/SQLiteAssetData.cs
index 5a5260a121..d3f1308c9b 100644
--- a/OpenSim/Data/SQLite/SQLiteAssetData.cs
+++ b/OpenSim/Data/SQLite/SQLiteAssetData.cs
@@ -37,18 +37,12 @@ using OpenSim.Framework;
namespace OpenSim.Data.SQLite
{
///
- /// A User storage interface for the DB4o database system
+ /// An asset storage interface for the SQLite database system
///
public class SQLiteAssetData : AssetDataBase
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- ///
- /// The database manager
- ///
- ///
- /// Artificial constructor called upon plugin load
- ///
private const string SelectAssetSQL = "select * from assets where UUID=:UUID";
private const string SelectAssetMetadataSQL = "select Name, Description, Type, Temporary, UUID from assets limit :start, :count";
private const string DeleteAssetSQL = "delete from assets where UUID=:UUID";
@@ -353,4 +347,4 @@ namespace OpenSim.Data.SQLite
#endregion
}
-}
+}
\ No newline at end of file