diff options
author | Dr Scofield | 2008-06-27 23:03:39 +0000 |
---|---|---|
committer | Dr Scofield | 2008-06-27 23:03:39 +0000 |
commit | 748f72326d9a295958bc9ba63bbb1a5d39030ef7 (patch) | |
tree | 58f2c9a5f6b8ffab5ad3621070aa17cb1c1e3e6b /OpenSim/Region/Modules | |
parent | more warnings to go. (diff) | |
download | opensim-SC_OLD-748f72326d9a295958bc9ba63bbb1a5d39030ef7.zip opensim-SC_OLD-748f72326d9a295958bc9ba63bbb1a5d39030ef7.tar.gz opensim-SC_OLD-748f72326d9a295958bc9ba63bbb1a5d39030ef7.tar.bz2 opensim-SC_OLD-748f72326d9a295958bc9ba63bbb1a5d39030ef7.tar.xz |
last round of warning squashing. calling it a day now.
Diffstat (limited to 'OpenSim/Region/Modules')
-rw-r--r-- | OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs | 24 |
2 files changed, 13 insertions, 13 deletions
diff --git a/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs index 7ce90f5..9c70a04 100644 --- a/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs +++ b/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs | |||
@@ -132,7 +132,7 @@ namespace OpenSim.Region.Modules.AvatarFactory | |||
132 | } | 132 | } |
133 | else | 133 | else |
134 | { | 134 | { |
135 | LLUUID assetId; | 135 | // LLUUID assetId; |
136 | 136 | ||
137 | InventoryItemBase baseItem = profile.RootFolder.FindItem(appearance.Wearables[i].ItemID); | 137 | InventoryItemBase baseItem = profile.RootFolder.FindItem(appearance.Wearables[i].ItemID); |
138 | 138 | ||
diff --git a/OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs b/OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs index 8f314b1..4826ff2 100644 --- a/OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs +++ b/OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs | |||
@@ -133,21 +133,21 @@ namespace OpenSim.Region.Modules.SvnSerialiser | |||
133 | m_svnClient.Checkout2(m_svnurl, m_svndir, revision, revision, true, false); | 133 | m_svnClient.Checkout2(m_svnurl, m_svndir, revision, revision, true, false); |
134 | } | 134 | } |
135 | 135 | ||
136 | private void CheckoutSvnPartial(string subdir) | 136 | // private void CheckoutSvnPartial(string subdir) |
137 | { | 137 | // { |
138 | if (!Directory.Exists(m_svndir + Slash.DirectorySeparatorChar + subdir)) | 138 | // if (!Directory.Exists(m_svndir + Slash.DirectorySeparatorChar + subdir)) |
139 | Directory.CreateDirectory(m_svndir + Slash.DirectorySeparatorChar + subdir); | 139 | // Directory.CreateDirectory(m_svndir + Slash.DirectorySeparatorChar + subdir); |
140 | 140 | ||
141 | m_svnClient.Checkout2(m_svnurl + "/" + subdir, m_svndir, Svn.Revision.Head, Svn.Revision.Head, true, false); | 141 | // m_svnClient.Checkout2(m_svnurl + "/" + subdir, m_svndir, Svn.Revision.Head, Svn.Revision.Head, true, false); |
142 | } | 142 | // } |
143 | 143 | ||
144 | private void CheckoutSvnPartial(string subdir, SvnRevision revision) | 144 | // private void CheckoutSvnPartial(string subdir, SvnRevision revision) |
145 | { | 145 | // { |
146 | if (!Directory.Exists(m_svndir + Slash.DirectorySeparatorChar + subdir)) | 146 | // if (!Directory.Exists(m_svndir + Slash.DirectorySeparatorChar + subdir)) |
147 | Directory.CreateDirectory(m_svndir + Slash.DirectorySeparatorChar + subdir); | 147 | // Directory.CreateDirectory(m_svndir + Slash.DirectorySeparatorChar + subdir); |
148 | 148 | ||
149 | m_svnClient.Checkout2(m_svnurl + "/" + subdir, m_svndir, revision, revision, true, false); | 149 | // m_svnClient.Checkout2(m_svnurl + "/" + subdir, m_svndir, revision, revision, true, false); |
150 | } | 150 | // } |
151 | 151 | ||
152 | #endregion | 152 | #endregion |
153 | 153 | ||