From 175c3523f895aff52a61c311dda0a9a6a52f9480 Mon Sep 17 00:00:00 2001 From: Keir Nellyer Date: Thu, 7 Jul 2016 13:19:42 -0400 Subject: [PATCH] Remove todo relating to removal of database cleanup of chat entries after a report has been closed An external cleanup job/script will be used to remove old data --- .../src/mineplex/core/report/ReportManager.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/report/ReportManager.java b/Plugins/Mineplex.Core/src/mineplex/core/report/ReportManager.java index 911287e66..4b1b111b0 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/report/ReportManager.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/report/ReportManager.java @@ -106,11 +106,6 @@ public class ReportManager CommandCenter.Instance.onPlayerCommandPreprocess( new PlayerCommandPreprocessEvent(reportCloser, "/punish " + suspectName + " " + reason)); } - - if (report.getCategory() == ReportCategory.CHAT_ABUSE) // only chat abuse reports have chat logs published - { - // todo do we remove or archive stored data in db? ie snapshots - } } } );