Remove unnecessary pub(crate) use

This commit is contained in:
Héctor Ramón Jiménez 2020-02-28 14:41:07 +01:00
parent 4e7159c22c
commit 88d4cd0970
2 changed files with 1 additions and 4 deletions

View File

@ -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;

View File

@ -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,