We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ea6a84 commit 25fb036Copy full SHA for 25fb036
mithril-aggregator/src/database/provider/open_message/get_open_message.rs
@@ -41,15 +41,6 @@ impl<'client> GetOpenMessageProvider<'client> {
41
pub fn get_expired_entity_type_condition(&self, now: &str) -> WhereCondition {
42
WhereCondition::new("expires_at < ?*", vec![Value::String(now.to_string())])
43
}
44
-
45
- // Useful in test and probably in the future.
46
- #[allow(dead_code)]
47
- fn get_open_message_id_condition(&self, open_message_id: &str) -> WhereCondition {
48
- WhereCondition::new(
49
- "open_message_id = ?*",
50
- vec![Value::String(open_message_id.to_owned())],
51
- )
52
- }
53
54
55
impl<'client> Provider<'client> for GetOpenMessageProvider<'client> {
0 commit comments