Skip to content

Commit d8f9637

Browse files
committed
Fixing very strange bottleneck... Possibly related issue #634
1 parent 7b7d3ee commit d8f9637

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

External/Plugins/HaXeContext/Context.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -832,11 +832,7 @@ private void ResolveImport(MemberModel item, MemberList imports)
832832
if (aPath.IsValid && !aPath.Updating)
833833
{
834834
string path;
835-
try
836-
{
837-
path = Path.Combine(aPath.Path, fileName);
838-
}
839-
catch { continue; }
835+
path = aPath.Path + dirSeparator + fileName;
840836

841837
FileModel file = null;
842838
// cached file

0 commit comments

Comments
 (0)