We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you have twice the same condition in the same block it can be merged:
if (a!=null) { a.foo(); } somethingeslse(); if (a!=null) { a.bar(); }
becomes
if (a!=null) { a.foo(); somethingeslse(); a.bar(); }
(bug found with Repairnator)
The text was updated successfully, but these errors were encountered:
For me it is not automatic, it will depends of somethingeslse(); But it can be a new repair model. Not so easy to implement in a meta-program.
somethingeslse();
Sorry, something went wrong.
Yes, or a validation with a pure template mode.
No branches or pull requests
When you have twice the same condition in the same block it can be merged:
becomes
(bug found with Repairnator)
The text was updated successfully, but these errors were encountered: