* Fix build break - went a const or two too far

0.6.5-rc1
Justin Clarke Casey 2009-03-26 20:15:36 +00:00
parent 7e40315d5d
commit 6ffed09682
1 changed files with 2 additions and 2 deletions

View File

@ -83,8 +83,8 @@ namespace OpenSim.Framework.Serialization
/// <value>
/// Extensions used for asset types in the archive
/// </value>
public const IDictionary<sbyte, string> ASSET_TYPE_TO_EXTENSION = new Dictionary<sbyte, string>();
public const IDictionary<string, sbyte> EXTENSION_TO_ASSET_TYPE = new Dictionary<string, sbyte>();
public static readonly IDictionary<sbyte, string> ASSET_TYPE_TO_EXTENSION = new Dictionary<sbyte, string>();
public static readonly IDictionary<string, sbyte> EXTENSION_TO_ASSET_TYPE = new Dictionary<string, sbyte>();
static ArchiveConstants()
{