Removed a piece of debug code

afrisby
MW 2007-08-10 14:04:00 +00:00
parent 427431ba17
commit e7eeab90d6
1 changed files with 0 additions and 9 deletions

View File

@ -541,14 +541,5 @@ namespace OpenSim.DataStore.MonoSqliteStorage
{
// TODO: DataSet commit
}
private void SaveAssetToFile(string filename, byte[] data)
{
FileStream fs = File.Create(filename);
BinaryWriter bw = new BinaryWriter(fs);
bw.Write(data);
bw.Close();
fs.Close();
}
}
}