Remove unnecessary pub(crate) use
This commit is contained in:
parent
4e7159c22c
commit
88d4cd0970
2 changed files with 1 additions and 4 deletions
|
|
@ -55,6 +55,3 @@ pub(crate) use transformation::Transformation;
|
|||
|
||||
#[cfg(any(feature = "image", feature = "svg"))]
|
||||
mod image;
|
||||
|
||||
#[cfg(any(feature = "image", feature = "svg"))]
|
||||
pub(crate) use self::image::Image;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ use crate::{
|
|||
};
|
||||
|
||||
#[cfg(any(feature = "image", feature = "svg"))]
|
||||
use crate::{image, Image};
|
||||
use crate::image::{self, Image};
|
||||
|
||||
use iced_native::{
|
||||
layout, Background, Color, Layout, MouseCursor, Point, Rectangle, Vector,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue