From f96d10a31694e8a37e5f4f85b136676d8150c467 Mon Sep 17 00:00:00 2001 From: Ed Harvey Date: Sat, 10 Dec 2011 20:00:48 +1100 Subject: [PATCH] nested class renamed to something more meaningful --- ILSpy/TreeNodes/ResourceNodes/ResourcesFileTreeNode.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ILSpy/TreeNodes/ResourceNodes/ResourcesFileTreeNode.cs b/ILSpy/TreeNodes/ResourceNodes/ResourcesFileTreeNode.cs index 9632ce186..d96cfb31a 100644 --- a/ILSpy/TreeNodes/ResourceNodes/ResourcesFileTreeNode.cs +++ b/ILSpy/TreeNodes/ResourceNodes/ResourcesFileTreeNode.cs @@ -52,7 +52,7 @@ namespace ICSharpCode.ILSpy.TreeNodes sealed class ResourcesFileTreeNode : ResourceTreeNode { readonly ICollection> stringTableEntries = new ObservableCollection>(); - readonly ICollection otherEntries = new ObservableCollection(); + readonly ICollection otherEntries = new ObservableCollection(); public ResourcesFileTreeNode(EmbeddedResource er) : base(er) @@ -106,9 +106,9 @@ namespace ICSharpCode.ILSpy.TreeNodes string entryType = entry.Value.GetType().FullName; if (entry.Value is System.Globalization.CultureInfo) { - otherEntries.Add(new ResourceObjectRepresentation(keyString, entryType, ((System.Globalization.CultureInfo)entry.Value).DisplayName)); + otherEntries.Add(new SerializedObjectRepresentation(keyString, entryType, ((System.Globalization.CultureInfo)entry.Value).DisplayName)); } else { - otherEntries.Add(new ResourceObjectRepresentation(keyString, entryType, entry.Value.ToString())); + otherEntries.Add(new SerializedObjectRepresentation(keyString, entryType, entry.Value.ToString())); } } @@ -145,9 +145,9 @@ namespace ICSharpCode.ILSpy.TreeNodes } } - internal class ResourceObjectRepresentation + internal class SerializedObjectRepresentation { - public ResourceObjectRepresentation(string key, string type, string value) + public SerializedObjectRepresentation(string key, string type, string value) { this.Key = key; this.Type = type;