From dbd3596a0561a88c53fdcc9750bd5ef815a37b12 Mon Sep 17 00:00:00 2001 From: Cyber Date: Tue, 17 Nov 2015 18:30:52 -0500 Subject: [PATCH] Fixed Minor Bug that breaks Reading --- source/Cosmos.System.Plugs/System/IO/PathImpl.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Cosmos.System.Plugs/System/IO/PathImpl.cs b/source/Cosmos.System.Plugs/System/IO/PathImpl.cs index 280212517..8e8b10ff4 100644 --- a/source/Cosmos.System.Plugs/System/IO/PathImpl.cs +++ b/source/Cosmos.System.Plugs/System/IO/PathImpl.cs @@ -151,6 +151,7 @@ namespace Cosmos.System.Plugs.System.IO public static string GetDirectoryName(string aPath) { + FatHelpers.Debug("PathImpl -- GetDirectoryName"); if (aPath != null) { CheckInvalidPathChars(aPath, false); @@ -172,6 +173,7 @@ namespace Cosmos.System.Plugs.System.IO string result = xPath.Substring(0, xNum); FatHelpers.Debug("-- Path.GetDirectoryName : aPath = " + aPath + ", result = " + result + " --"); + return result; } }