Merge pull request #65121 from timothyqiu/print-line

Remove unnecessary `print_line` in RendererDummy
This commit is contained in:
Rémi Verschelde 2022-08-31 07:41:14 +02:00 committed by GitHub
commit 9d2e2c97c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -105,7 +105,6 @@ public:
virtual int mesh_get_surface_count(RID p_mesh) const override {
DummyMesh *m = mesh_owner.get_or_null(p_mesh);
ERR_FAIL_COND_V(!m, 0);
print_line(m->surfaces.size());
return m->surfaces.size();
}