library: replace super::super by crate import
Done with the following shell command: `sed -e 's/super::super/crate/' -i $(git grep -l super::super)`. Followed by a `cargo fmt --all`.
This commit is contained in:
parent
4f3af74c22
commit
7112873715
11 changed files with 19 additions and 19 deletions
|
|
@ -1,6 +1,6 @@
|
|||
use super::super::core::LinearColor;
|
||||
use super::super::Point2D;
|
||||
use super::Texture;
|
||||
use crate::core::LinearColor;
|
||||
use crate::Point2D;
|
||||
|
||||
/// A texture with the same color on all points.
|
||||
#[derive(Debug, PartialEq)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue