Jefffrey commented on code in PR #18983:
URL: https://github.com/apache/datafusion/pull/18983#discussion_r2573025468
##########
datafusion/physical-plan/src/render_tree.rs:
##########
@@ -31,7 +31,7 @@ use crate::{DisplayFormatType, ExecutionPlan};
// TODO: It's never used.
/// Represents a 2D coordinate in the rendered tree.
/// Used to track positions of nodes and their connections.
-#[allow(dead_code)]
+#[expect(dead_code)]
Review Comment:
I meant like this:
```rust
pub struct Coordinate {
/// Horizontal position in the tree
#[expect(dead_code)]
pub x: usize,
/// Vertical position in the tree
#[expect(dead_code)]
pub y: usize,
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]