Browse Source

Restoring authorship annotation for <bazarinm@yandex-team.ru>. Commit 2 of 2.

bazarinm 3 years ago
parent
commit
32ad1de867
1 changed files with 2 additions and 2 deletions
  1. 2 2
      library/cpp/codecs/codecs_registry.cpp

+ 2 - 2
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 {