Remove Unnecessary Double List
_OS::print_resources_by_type had two of the exact same list, one of which was never used.
This commit is contained in:
parent
add3a825f0
commit
453ef0ba89
|
@ -587,10 +587,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();
|
||||
|
||||
bool found = false;
|
||||
|
|
Loading…
Reference in New Issue