mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
fix a use of string Trim()
This commit is contained in:
@@ -842,7 +842,7 @@ namespace OpenSim.Framework.Servers
|
||||
{
|
||||
StreamReader RevisionFile = File.OpenText(svnRevisionFileName);
|
||||
buildVersion = RevisionFile.ReadLine();
|
||||
buildVersion.Trim();
|
||||
buildVersion = buildVersion.Trim();
|
||||
RevisionFile.Close();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user