From 3d476911b22cdca962e1c162cae6ea3e10896596 Mon Sep 17 00:00:00 2001 From: kudzu_cp <6d05c8c8ef5431987001abfdb2eadc9593ac9498> Date: Sat, 19 Mar 2011 01:05:07 +0000 Subject: [PATCH] --- source2/Kernel/System/Cosmos.System/Filesystem/Filesystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source2/Kernel/System/Cosmos.System/Filesystem/Filesystem.cs b/source2/Kernel/System/Cosmos.System/Filesystem/Filesystem.cs index 3886ad599..8f1ec5c3b 100644 --- a/source2/Kernel/System/Cosmos.System/Filesystem/Filesystem.cs +++ b/source2/Kernel/System/Cosmos.System/Filesystem/Filesystem.cs @@ -9,13 +9,13 @@ namespace Cosmos.System.Filesystem { // NOT do this in the future, but it will be able to map paths to things that look like // drive letters for compatibility with Windows code. // For now we use Dictionary for simplicity, but in future this will change. - //static protected Dictionary mMappings = new Dictionary(); + static protected Dictionary mMappings = new Dictionary(); static protected FileSystem mFS; static public void AddMapping(string aPath, FileSystem aFileSystem) { // Dictionary<> doesnt work yet, so for now we just hack this and support only one FS - //mMappings.Add(aPath.ToUpper(), aFileSystem); + mMappings.Add(aPath.ToUpper(), aFileSystem); mFS = aFileSystem; } }