Remove unnecessary "mut"
This commit is contained in:
parent
2aa54b820f
commit
2021b3ea16
1 changed files with 1 additions and 2 deletions
|
@ -270,6 +270,5 @@ pub fn setup_entryheader() -> Class {
|
|||
|
||||
pub fn setup_entrycontent() -> Class {
|
||||
let string = Class::from_existing("String");
|
||||
let mut class = Class::new("REntryContent", Some(&string));
|
||||
class
|
||||
Class::new("REntryContent", Some(&string))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue