I do not understand reason for bool condition to be there. It is not essential and It can be rewritten it with better descriptive condition. What does it contribute to the syntax/logic of the compiling process ?
bool condition0;
bool condition0;
Rename
Hi Crash, you’re talking about the code that’s auto-generated I assume? The conditions are there as part of the automatic code generation logic. If you use no conditions then there’s still a boolean flag that is a side effect, but doesn’t have any impact on the strategy itself.
Your Response
Post
Edit Post
Login is required