Skip to content

Commit 68afcf3

Browse files
gordyffacebook-github-bot
authored andcommitted
Remove extraneous println
Reviewed By: captbaritone Differential Revision: D77600915 fbshipit-source-id: 09f9d83a8b4d36f67a6955842c2e6d0f8f799f82
1 parent 31c024a commit 68afcf3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler/crates/relay-transforms/src/validations/disallow_required_on_non_null_field.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl<'a> DisallowRequiredOnNonNullField<'a> {
191191
}
192192

193193
fn modifiable_fields_to_warnings(&mut self) {
194-
for (path, action) in self.modifiable_fields.iter() {
194+
for (_, action) in self.modifiable_fields.iter() {
195195
match action {
196196
Action::NotRemovable => {}
197197
Action::Removable(message_list) => {
@@ -204,8 +204,6 @@ impl<'a> DisallowRequiredOnNonNullField<'a> {
204204
}
205205
}
206206
}
207-
208-
println!("path: {:?}", path);
209207
}
210208
}
211209
}

0 commit comments

Comments
 (0)