mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
* Changed auto-properties to properties with backing field
* This fixes mantis #3650
This commit is contained in:
@@ -7,7 +7,18 @@ namespace OpenSim.Tests.Common.Mock
|
||||
{
|
||||
public class TestOSHttpResponse : OSHttpResponse
|
||||
{
|
||||
public override int StatusCode { get; set; }
|
||||
public override string ContentType { get; set; }
|
||||
private int m_statusCode;
|
||||
public override int StatusCode
|
||||
{
|
||||
get { return m_statusCode; }
|
||||
set { m_statusCode = value; }
|
||||
}
|
||||
|
||||
private string m_contentType;
|
||||
public override string ContentType
|
||||
{
|
||||
get { return m_contentType; }
|
||||
set { m_contentType = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user