diff options
author | UbitUmarov | 2016-11-21 23:34:33 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-21 23:34:33 +0000 |
commit | 8c19ea910a404295292a09762fc48dadd2fce2d4 (patch) | |
tree | 32e112ee1f2de0c012dc52e7809048fc38a48354 /OpenSim/Framework/AssetBase.cs | |
parent | fix type bug on hyperlinks (diff) | |
download | opensim-SC-8c19ea910a404295292a09762fc48dadd2fce2d4.zip opensim-SC-8c19ea910a404295292a09762fc48dadd2fce2d4.tar.gz opensim-SC-8c19ea910a404295292a09762fc48dadd2fce2d4.tar.bz2 opensim-SC-8c19ea910a404295292a09762fc48dadd2fce2d4.tar.xz |
remove a wrong virtual dec ( no overides, and cant really have if used on a constructor like in assetlandmark)
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/AssetBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/AssetBase.cs b/OpenSim/Framework/AssetBase.cs index 33be612..87fd04a 100644 --- a/OpenSim/Framework/AssetBase.cs +++ b/OpenSim/Framework/AssetBase.cs | |||
@@ -155,7 +155,7 @@ namespace OpenSim.Framework | |||
155 | } | 155 | } |
156 | } | 156 | } |
157 | 157 | ||
158 | public virtual byte[] Data | 158 | public byte[] Data |
159 | { | 159 | { |
160 | get { return m_data; } | 160 | get { return m_data; } |
161 | set { m_data = value; } | 161 | set { m_data = value; } |