refactor: fix non-idiomatic boolean comparisons from Zig port#30930
refactor: fix non-idiomatic boolean comparisons from Zig port#30930Liohtml wants to merge 1 commit into
Conversation
- Blob.rs: `== false` → `!` (seekable check) - pack_command.rs: `!b == true` → `!b` (bundled deps check) Similar to oven-sh#30867's cleanup of post-port artifacts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (2)
WalkthroughThis PR simplifies two boolean expressions across unrelated source files. In ChangesBoolean Expression Simplifications
🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
Blob.rs:2304:file.seekable.unwrap_or(true) == false→!file.seekable.unwrap_or(true)pack_command.rs:1457:!b == true→!bTest plan
🤖 Generated with Claude Code