diff options
author | Adam Frisby | 2008-01-15 02:09:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-01-15 02:09:55 +0000 |
commit | b25f9f322cdbcde7fd8c043137bf07992e5ef318 (patch) | |
tree | 7c1a5115b2849dfe388b825dd271271d347f9574 /OpenSim/Framework/Data.SQLite/SQLiteUserData.cs | |
parent | Set svn:eol-style. (diff) | |
download | opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.zip opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.gz opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.bz2 opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.xz |
* Mother of all commits:
* Cleaned up copyright notices in AssemblyInfo.cs's
* Added Copyright headers to a bunch of files missing them
* Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
Diffstat (limited to 'OpenSim/Framework/Data.SQLite/SQLiteUserData.cs')
-rw-r--r-- | OpenSim/Framework/Data.SQLite/SQLiteUserData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs b/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs index c4a874f..7647d02 100644 --- a/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs +++ b/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs | |||
@@ -630,7 +630,7 @@ namespace OpenSim.Framework.Data.SQLite | |||
630 | { | 630 | { |
631 | if (row[col] == null) | 631 | if (row[col] == null) |
632 | { | 632 | { |
633 | row[col] = ""; | 633 | row[col] = String.Empty; |
634 | } | 634 | } |
635 | } | 635 | } |
636 | } | 636 | } |
@@ -671,7 +671,7 @@ namespace OpenSim.Framework.Data.SQLite | |||
671 | { | 671 | { |
672 | if (row[col] == null) | 672 | if (row[col] == null) |
673 | { | 673 | { |
674 | row[col] = ""; | 674 | row[col] = String.Empty; |
675 | } | 675 | } |
676 | } | 676 | } |
677 | } | 677 | } |