Revert "DIRECTOR: Check for cast children in buildbot"

Cast::loadCastChildren() iterates over all casts, not just the ones that
have children. The original commit gave a buildbot error for all casts
that weren't handled by loadCastChildren.

This reverts commit ec5e0cf1b6.
This commit is contained in:
Roland van Laar 2022-08-27 21:40:44 +02:00
parent 47755b4b38
commit f92492f4a1

View file

@ -684,10 +684,8 @@ void Cast::loadCastChildren() {
continue;
}
if (c->_value->_type != kCastBitmap) {
warning("BUILDBOT: STUB: Cast::loadCastChildren(): Unhandled child of type: %d", c->_value->_type);
if (c->_value->_type != kCastBitmap)
continue;
}
// Then handle bitmaps
BitmapCastMember *bitmapCast = (BitmapCastMember *)c->_value;