summaryrefslogtreecommitdiffstats
path: root/library/cpp/codecs
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/codecs')
-rw-r--r--library/cpp/codecs/codecs_registry.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/codecs/codecs_registry.cpp b/library/cpp/codecs/codecs_registry.cpp
index baf06a9e186..17d07062ab4 100644
--- a/library/cpp/codecs/codecs_registry.cpp
+++ b/library/cpp/codecs/codecs_registry.cpp
@@ -13,11 +13,11 @@
namespace NCodecs {
TCodecPtr ICodec::GetInstance(TStringBuf name) {
- return Singleton<NPrivate::TCodecRegistry>()->GetCodec(name);
+ return Singleton<NPrivate::TCodecRegistry>()->GetCodec(name);
}
TVector<TString> ICodec::GetCodecsList() {
- return Singleton<NPrivate::TCodecRegistry>()->GetCodecsList();
+ return Singleton<NPrivate::TCodecRegistry>()->GetCodecsList();
}
namespace NPrivate {