From fef3b3689492dea63693c964bcdbec9f5137eb5e Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Mon, 21 Apr 2008 07:09:17 +0000 Subject: * Optimised using statements and namespace references across entire project (this took a while to run). --- OpenSim/Data/ReservationData.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'OpenSim/Data/ReservationData.cs') diff --git a/OpenSim/Data/ReservationData.cs b/OpenSim/Data/ReservationData.cs index e284708..43fb299 100644 --- a/OpenSim/Data/ReservationData.cs +++ b/OpenSim/Data/ReservationData.cs @@ -25,6 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +using System; using libsecondlife; namespace OpenSim.Data @@ -37,11 +38,11 @@ namespace OpenSim.Data public int reservationMaxX = 65536; public int reservationMaxY = 65536; - public string reservationName = System.String.Empty; - public string reservationCompany = System.String.Empty; + public string reservationName = String.Empty; + public string reservationCompany = String.Empty; public bool status = true; - public string gridSendKey = System.String.Empty; - public string gridRecvKey = System.String.Empty; + public string gridSendKey = String.Empty; + public string gridRecvKey = String.Empty; } } -- cgit v1.1