You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[performance] do not normalize locations that are already normalized
When projects or links are added to the workspace the file location is
normalized and saved to disk. Good. However it is not needed to do that
for those already normalized paths that are loaded back from disk.
Saves some startup time on windows, where name capitalization of each
path segment is expensive IO.
Copy file name to clipboardExpand all lines: resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/localstore/FileSystemResourceManager.java
+14-5Lines changed: 14 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -660,9 +660,14 @@ public boolean hasSavedDescription(IProject project) {
660
660
* @param location the File system location of this resource on disk
661
661
* @return The file store for the provided resource
0 commit comments