aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace/custom_action.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/lwtrace/custom_action.cpp')
-rw-r--r--library/cpp/lwtrace/custom_action.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/lwtrace/custom_action.cpp b/library/cpp/lwtrace/custom_action.cpp
index e8a2741c6a..a379b34ec0 100644
--- a/library/cpp/lwtrace/custom_action.cpp
+++ b/library/cpp/lwtrace/custom_action.cpp
@@ -14,7 +14,7 @@ TCustomActionExecutor* TCustomActionFactory::Create(TProbe* probe, const TCustom
}
void TCustomActionFactory::Register(const TString& name, const TCustomActionFactory::TCallback& callback) {
- if (Callbacks.contains(name)) {
+ if (Callbacks.contains(name)) {
ythrow yexception() << "duplicate custom action '" << name << "'";
}
Callbacks[name] = callback;