remove dead code

pull/21833/head
Bruno Windels 2019-07-25 13:34:30 +02:00
parent a7259b31b6
commit f8e1977f0a
1 changed files with 0 additions and 12 deletions

View File

@ -56,15 +56,3 @@ export function textSerialize(model) {
}
}, "");
}
export function requiresHtml(model) {
return model.parts.some(part => {
switch (part.type) {
case "room-pill":
case "user-pill":
return true;
default:
return false;
}
});
}