code cleanup

This commit is contained in:
Sergey Olontsev 2025-07-02 08:12:25 +03:00
parent 69a060f64f
commit b475fbb932
No known key found for this signature in database
GPG key ID: 67DDC06CA52E8A39
2 changed files with 1 additions and 3 deletions

View file

@ -29,7 +29,6 @@ use helpers::{
}; };
use core::cmp::Ordering; use core::cmp::Ordering;
use core::fmt::Formatter;
use core::ops::Deref; use core::ops::Deref;
use core::{ use core::{
fmt::{self, Display}, fmt::{self, Display},
@ -7994,7 +7993,7 @@ pub struct CreateServerStatement {
} }
impl fmt::Display for CreateServerStatement { impl fmt::Display for CreateServerStatement {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let CreateServerStatement { let CreateServerStatement {
name, name,
if_not_exists, if_not_exists,

View file

@ -163,7 +163,6 @@ extern crate alloc;
#[macro_use] #[macro_use]
#[cfg(test)] #[cfg(test)]
extern crate pretty_assertions; extern crate pretty_assertions;
extern crate core;
pub mod ast; pub mod ast;
#[macro_use] #[macro_use]