Merge remote-tracking branch 'origin/FDBWorkers' into FDBWorkers
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/FileInfoCache.java b/modules/debugger/src/java/flex/tools/debugger/cli/FileInfoCache.java
index f4587b7..b122e7c 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/FileInfoCache.java
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/FileInfoCache.java
@@ -537,6 +537,9 @@
 			// if we are using the full path string, then prefix a '.' to our matching string so that abc.as and Gabc.as don't both hit
 			String match = (usePath && pathExists) ? dotMatchString : matchString;
 
+            match = match.replace('/', '.');  // get rid of path identifiers and use dots
+            match = match.replace('\\', '.');
+
 			name = name.replace('/', '.');  // get rid of path identifiers and use dots
 			name = name.replace('\\', '.'); // would be better to modify the input string, but we don't know which path char will be used.