mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Reverting Bags case sensitivity
--HG-- branch : 1.x extra : rebase_source : fbd9065c970b5d076bc39bb9c0f241ac2a9e3681
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.Dynamic;
|
||||
|
||||
namespace Orchard.Data.Bags {
|
||||
public class Bag : DynamicObject, IEnumerable<KeyValuePair<string, object>>, ISItem {
|
||||
internal readonly Dictionary<string, ISItem> _properties = new Dictionary<string, ISItem>(StringComparer.OrdinalIgnoreCase);
|
||||
internal readonly Dictionary<string, ISItem> _properties = new Dictionary<string, ISItem>();
|
||||
|
||||
public static dynamic New() {
|
||||
return new Bag();
|
||||
|
||||
Reference in New Issue
Block a user