Remove Clone implementation for Paragraph

This commit is contained in:
Héctor Ramón Jiménez 2023-09-01 03:25:29 +02:00
parent 252a05c7f4
commit ce22d661fa
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -7,7 +7,7 @@ use crate::text::{self, FontSystem};
use std::fmt; use std::fmt;
use std::sync::{self, Arc}; use std::sync::{self, Arc};
#[derive(Clone, PartialEq, Default)] #[derive(PartialEq, Default)]
pub struct Paragraph(Arc<Internal>); pub struct Paragraph(Arc<Internal>);
struct Internal { struct Internal {