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:
parent
47755b4b38
commit
f92492f4a1
1 changed files with 1 additions and 3 deletions
|
@ -684,10 +684,8 @@ void Cast::loadCastChildren() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c->_value->_type != kCastBitmap) {
|
if (c->_value->_type != kCastBitmap)
|
||||||
warning("BUILDBOT: STUB: Cast::loadCastChildren(): Unhandled child of type: %d", c->_value->_type);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
|
|
||||||
// Then handle bitmaps
|
// Then handle bitmaps
|
||||||
BitmapCastMember *bitmapCast = (BitmapCastMember *)c->_value;
|
BitmapCastMember *bitmapCast = (BitmapCastMember *)c->_value;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue