/**
  * @desc Delete comments topic according to module identifier and id in module
  * @param string $module_id the module identifier
  * @param integer $id_in_module id in module used in comments system
  */
 public static function delete_comments_topic_module($module_id, $id_in_module)
 {
     try {
         CommentsManager::delete_comments_topic_module($module_id, $id_in_module);
     } catch (RowNotFoundException $e) {
     }
 }