File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1649,18 +1649,18 @@ public string _ValueExpanded {
16491649 // delimiter for a primary key (value names can contain them)
16501650 public string Name {
16511651 get {
1652- string keyName = GetComparableName ( KeyName ) ;
1652+ string comparableKeyName = GetComparableName ( KeyName ) ;
16531653
1654- if ( ! String . IsNullOrEmpty ( keyName ) ) {
1655- keyName = keyName . ToUpperInvariant ( ) ;
1654+ if ( ! String . IsNullOrEmpty ( comparableKeyName ) ) {
1655+ comparableKeyName = comparableKeyName . ToUpperInvariant ( ) ;
16561656 }
16571657
1658- string valueName = GetComparableName ( ValueName ) ;
1658+ string comparableValueName = GetComparableName ( ValueName ) ;
16591659
1660- if ( ! String . IsNullOrEmpty ( valueName ) ) {
1661- valueName = valueName . ToUpperInvariant ( ) ;
1660+ if ( ! String . IsNullOrEmpty ( comparableValueName ) ) {
1661+ comparableValueName = comparableValueName . ToUpperInvariant ( ) ;
16621662 }
1663- return keyName + "\0 " + valueName ;
1663+ return comparableKeyName + "\0 " + comparableValueName ;
16641664 }
16651665 }
16661666
You can’t perform that action at this time.
0 commit comments