You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2017/09/22 23:43:27 UTC

[geode-native] branch develop updated: GEODE-3630: Corrects inconsistency in naming conventions.

This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 11c786b  GEODE-3630: Corrects inconsistency in naming conventions.
11c786b is described below

commit 11c786b56e932404096dea32c290ef40f3872b52
Author: Jacob Barrett <jb...@pivotal.io>
AuthorDate: Fri Sep 22 16:40:47 2017 -0700

    GEODE-3630: Corrects inconsistency in naming conventions.
---
 cppcache/src/SerializationRegistry.cpp | 6 +++---
 cppcache/src/SerializationRegistry.hpp | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/cppcache/src/SerializationRegistry.cpp b/cppcache/src/SerializationRegistry.cpp
index a7e75f6..af568f8 100644
--- a/cppcache/src/SerializationRegistry.cpp
+++ b/cppcache/src/SerializationRegistry.cpp
@@ -254,7 +254,7 @@ PdxSerializablePtr SerializationRegistry::getPdxType(char* className) {
   if (nullptr == objectType) {
     try {
       pdxObj =
-          std::make_shared<PdxWrapper>((const char*)className, m_pdxSerializer);
+          std::make_shared<PdxWrapper>((const char*)className, pdxSerializer);
     } catch (const Exception&) {
       LOGERROR(
           "Unregistered class %s during PDX deserialization: Did the "
@@ -270,11 +270,11 @@ PdxSerializablePtr SerializationRegistry::getPdxType(char* className) {
 }
 
 void SerializationRegistry::setPdxSerializer(PdxSerializerPtr pdxSerializer) {
-  m_pdxSerializer = pdxSerializer;
+  pdxSerializer = pdxSerializer;
 }
 
 PdxSerializerPtr SerializationRegistry::getPdxSerializer() {
-  return m_pdxSerializer;
+  return pdxSerializer;
 }
 
 int32_t SerializationRegistry::GetPDXIdForType(PoolPtr pool,
diff --git a/cppcache/src/SerializationRegistry.hpp b/cppcache/src/SerializationRegistry.hpp
index 792c441..691e7f7 100644
--- a/cppcache/src/SerializationRegistry.hpp
+++ b/cppcache/src/SerializationRegistry.hpp
@@ -221,7 +221,7 @@ class CPPCACHE_EXPORT SerializationRegistry {
   }
 
  private:
-  PdxSerializerPtr m_pdxSerializer;
+  PdxSerializerPtr pdxSerializer;
   TheTypeMap theTypeMap;
   PdxTypeHandler pdxTypeHandler;
 };

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].