(guildId, userId)
| 65 | } |
| 66 | |
| 67 | static async getWarningCount(guildId, userId) { |
| 68 | const warnings = await this.getWarnings(guildId, userId); |
| 69 | return warnings.length; |
| 70 | } |
| 71 | |
| 72 | static async removeWarning(guildId, userId, warningId) { |
| 73 | try { |
nothing calls this directly
no test coverage detected