Skip to content

Commit b472454

Browse files
remove unneeded
1 parent 79cb776 commit b472454

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/pgt_text_size/src/range_adjustment_tracker.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ pub struct RangeAdjustmentsTrackerBuilder {
6969
markers: Vec<AdjustmentMarker>,
7070
}
7171

72+
impl Default for RangeAdjustmentsTrackerBuilder {
73+
fn default() -> Self {
74+
Self::new()
75+
}
76+
}
77+
7278
impl RangeAdjustmentsTrackerBuilder {
7379
/// Creates a new empty builder for range adjustments tracking.
7480
pub fn new() -> Self {

crates/pgt_typecheck/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ sqlx.workspace = true
2525
tokio.workspace = true
2626
tree-sitter.workspace = true
2727
uuid = { version = "1.18.1", features = ["v4"] }
28-
tracing.workspace = true
2928

3029
[dev-dependencies]
3130
insta.workspace = true

crates/pgt_typecheck/src/typed_identifier.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ pub fn apply_identifiers<'a>(
4747
// Resolve the type based on whether we're accessing a field of a composite type
4848
let type_ = resolve_type(identifier, position, &parts, schema_cache)?;
4949

50-
tracing::warn!("resolved type: {:#?}", type_);
51-
5250
Some((m.get_byte_range(), type_, identifier.type_.is_array))
5351
})
5452
.collect();

0 commit comments

Comments
 (0)