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:
Joshua Dahl 2021-01-04 12:24:18 -08:00
parent add3a825f0
commit 453ef0ba89

View file

@ -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;