diff --git a/OpenSim/Framework/AssetBase.cs b/OpenSim/Framework/AssetBase.cs index 03b6ea845c..8e7e059570 100644 --- a/OpenSim/Framework/AssetBase.cs +++ b/OpenSim/Framework/AssetBase.cs @@ -62,12 +62,12 @@ namespace OpenSim.Framework { get { - return - Type == (sbyte) AssetType.Animation || - Type == (sbyte) AssetType.Gesture || - Type == (sbyte) AssetType.ImageJPEG || - Type == (sbyte) AssetType.ImageTGA || - Type == (sbyte) AssetType.LSLBytecode ||; + return + (Type == (sbyte) AssetType.Animation || + Type == (sbyte) AssetType.Gesture || + Type == (sbyte) AssetType.ImageJPEG || + Type == (sbyte) AssetType.ImageTGA || + Type == (sbyte) AssetType.LSLBytecode); } }