Fix misplaced continue statement

This commit is contained in:
Jon Evans 2024-12-20 09:11:00 -05:00
parent 3a7aa7b660
commit eed7222bc3

View File

@ -537,8 +537,9 @@ bool FOOTPRINT::Deserialize( const google::protobuf::Any &aContainer )
wxLogTrace( traceApi, wxString::Format( wxS( "Attempting to unpack unknown type %s "
"from footprint message, skipping" ),
itemMsg.type_url() ) );
continue;
}
continue;
}
std::unique_ptr<BOARD_ITEM> item = CreateItemForType( *type, this );