diff --git a/public/src/modules/helpers.common.js b/public/src/modules/helpers.common.js
index 2dcf9f2659..f535e21076 100644
--- a/public/src/modules/helpers.common.js
+++ b/public/src/modules/helpers.common.js
@@ -18,8 +18,6 @@ module.exports = function (utils, Benchpress, relative_path) {
spawnPrivilegeStates,
localeToHTML,
renderTopicImage,
- renderTopicEvents,
- renderEvents,
renderDigestAvatar,
userAgentIcons,
buildAvatar,
@@ -180,50 +178,6 @@ module.exports = function (utils, Benchpress, relative_path) {
return '';
}
- function renderTopicEvents(index, sort) {
- console.warn('[renderTopicEvents] deprecated, use a partial at partials/topic/event.tpl');
- if (sort === 'most_votes') {
- return '';
- }
- const start = this.posts[index].eventStart;
- const end = this.posts[index].eventEnd;
- const events = this.events.filter(event => event.timestamp >= start && event.timestamp < end);
- if (!events.length) {
- return '';
- }
-
- return renderEvents.call(this, events);
- }
-
- function renderEvents(events) {
- return events.reduce((html, event) => {
- html += `