mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 16:58:56 +00:00
[xbase][workspace] Reduced runtime complexity of Provider<WorkspaceConfig>
The workspace based impl used to copy information about all projects on each access. This is now done only for the projects that clients really ask for. Change-Id: I165a395235e2dca0085da4edac4e70144bef6c87
This commit is contained in:
parent
6aa2e61f8f
commit
32599d1e59
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ class ResourceStorageFacade implements IResourceStorageFacade {
|
|||
}
|
||||
|
||||
def protected getSourceContainerURI(StorageAwareResource resource) {
|
||||
resource.URI.trimFileExtension.trimSegments(1).appendSegment("")
|
||||
resource.URI.trimSegments(1).appendSegment("")
|
||||
}
|
||||
|
||||
override hasStorageFor(URI uri) {
|
||||
|
|
Loading…
Reference in a new issue