Remove Unnecessary Double List
_OS::print_resources_by_type had two of the exact same list, one of which was never used.
(cherry picked from commit 453ef0ba89
)
This commit is contained in:
parent
3002f57e1b
commit
0239337475
1 changed files with 1 additions and 4 deletions
|
@ -1045,10 +1045,7 @@ void _OS::print_resources_by_type(const Vector<String> &p_types) {
|
|||
List<Ref<Resource> > resources;
|
||||
ResourceCache::get_cached_resources(&resources);
|
||||
|
||||
List<Ref<Resource> > rsrc;
|
||||
ResourceCache::get_cached_resources(&rsrc);
|
||||
|
||||
for (List<Ref<Resource> >::Element *E = rsrc.front(); E; E = E->next()) {
|
||||
for (List<Ref<Resource> >::Element *E = resources.front(); E; E = E->next()) {
|
||||
|
||||
Ref<Resource> r = E->get();
|
||||
|
||||
|
|
Loading…
Reference in a new issue