Skip to content

Commit

Permalink
Remove unnecessary pub(crate) use
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Feb 28, 2020
1 parent 4e7159c commit 88d4cd0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions wgpu/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
2 changes: 1 addition & 1 deletion wgpu/src/renderer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 88d4cd0

Please sign in to comment.