Remove a leftover comment

This commit is contained in:
Thinkofname 2016-04-21 11:43:42 +01:00
parent edf6f34a0b
commit 50ded118f3
1 changed files with 0 additions and 1 deletions

View File

@ -136,7 +136,6 @@ impl Vars {
pub fn set<T: Sized + Any>(&self, var: CVar<T>, val: T)
where CVar<T>: Var
{
// self.var_values.insert(var.name, Box::new(val));
*self.var_values.get(var.name).unwrap().borrow_mut() = Box::new(val);
self.save_config();
}