Remove new-line in query

This commit is contained in:
Keir Nellyer 2016-06-10 12:34:23 +01:00
parent 2cacdbae34
commit 09009c352b

View File

@ -44,7 +44,7 @@ public class ReportRepository extends MinecraftRepository
private static final String SET_REPORT_HANDLER = "REPLACE INTO reportHandlers (reportId, handlerId)" +
" VALUES (?, ?);";
private static final String SET_REPORT_RESULT = "REPLACE INTO reportResults (reportId, resultId, reason, closedTime)\n" +
private static final String SET_REPORT_RESULT = "REPLACE INTO reportResults (reportId, resultId, reason, closedTime)" +
" VALUES (?, ?, ?, ?);";
private static final String GET_REPORT = "SELECT * FROM reports" +