Commit cd73027
Replace
Two adjacent `if not value.nil?` trailing modifiers in
`add_argument`'s XMLTYPE branch used the awkward double negation
form. Replace with `unless value.nil?` for idiomatic Ruby; same
semantics, same line count.
No behavior change. Full suite is green (468 examples, 0 failures,
1 pre-existing pending).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>if not value.nil? with unless value.nil?
1 parent e12dd09 commit cd73027
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
243 | 243 | | |
244 | 244 | | |
245 | 245 | | |
246 | | - | |
247 | | - | |
| 246 | + | |
| 247 | + | |
248 | 248 | | |
249 | 249 | | |
250 | 250 | | |
| |||
0 commit comments