| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Review requested:
|
Sorry, something went wrong.
| if (field.value().get_string().get(result.builder_script_path) || | ||
| result.builder_script_path.empty()) { |
There was a problem hiding this comment.
| if (field.value().get_string().get(result.builder_script_path) || | |
| result.builder_script_path.empty()) { | |
| if (field.value().get_string().get(*result.builder_script_path) || | |
| result.builder_script_path->empty()) { |
Sorry, something went wrong.
|
This pull request has been marked as stale due to 210 days of inactivity. |
Sorry, something went wrong.
|
This pull request has been marked as stale due to 90 days of inactivity. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
This is a very small change following #59473 by @joyeecheung motivated by a remark from @anonrig : it seems that we create a temporary string needlessly.
This PR is not about performance per se, but rather code simplicity. It removes two lines of code.