Skip to content

Commit ff70b2b

Browse files
committed
Passed wrong flag for cached lookup
1 parent 807ee7e commit ff70b2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

recaf-core/src/main/java/software/coley/recaf/workspace/model/BasicWorkspace.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public List<WorkspaceResource> getAllResources(boolean includeInternal) {
136136
List<WorkspaceResource> cached = this.cachedAllResources;
137137
if (cached != null)
138138
return cached;
139-
return this.cachedAllResources = Workspace.super.getAllResources(false);
139+
return this.cachedAllResources = Workspace.super.getAllResources(true);
140140
} else {
141141
List<WorkspaceResource> cached = this.cachedAllResourcesNoInternal;
142142
if (cached != null)

0 commit comments

Comments
 (0)