Skip to content

Commit b475fbb

Browse files
committed
code cleanup
1 parent 69a060f commit b475fbb

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/ast/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ use helpers::{
2929
};
3030

3131
use core::cmp::Ordering;
32-
use core::fmt::Formatter;
3332
use core::ops::Deref;
3433
use core::{
3534
fmt::{self, Display},
@@ -7994,7 +7993,7 @@ pub struct CreateServerStatement {
79947993
}
79957994

79967995
impl fmt::Display for CreateServerStatement {
7997-
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
7996+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
79987997
let CreateServerStatement {
79997998
name,
80007999
if_not_exists,

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ extern crate alloc;
163163
#[macro_use]
164164
#[cfg(test)]
165165
extern crate pretty_assertions;
166-
extern crate core;
167166

168167
pub mod ast;
169168
#[macro_use]

0 commit comments

Comments
 (0)