GEODE-2346: fixed formatting on previous commits.

This closes #365


Project: http://git-wip-us.apache.org/repos/asf/geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/3b389a08
Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/3b389a08
Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/3b389a08

Branch: refs/heads/next-gen-native-client-software-grant
Commit: 3b389a086959aeda58066810d5df17af3f7c4af7
Parents: d1593a0
Author: Ernest Burghardt <eburgha...@pivotal.io>
Authored: Thu Jan 26 08:53:57 2017 -0800
Committer: Jacob Barrett <jbarr...@pivotal.io>
Committed: Thu Jan 26 11:40:17 2017 -0800

----------------------------------------------------------------------
 .../src/statistics/GeodeStatisticsFactory.cpp   | 29 ++++++++++----------
 src/pdxautoserializer/ASCLIBuiltins.hpp         |  9 ++----
 2 files changed, 18 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/3b389a08/src/cppcache/src/statistics/GeodeStatisticsFactory.cpp
----------------------------------------------------------------------
diff --git a/src/cppcache/src/statistics/GeodeStatisticsFactory.cpp 
b/src/cppcache/src/statistics/GeodeStatisticsFactory.cpp
index a009e38..ffcba0a 100644
--- a/src/cppcache/src/statistics/GeodeStatisticsFactory.cpp
+++ b/src/cppcache/src/statistics/GeodeStatisticsFactory.cpp
@@ -38,8 +38,7 @@ using namespace apache::geode::statistics;
  */
 GeodeStatisticsFactory* GeodeStatisticsFactory::s_singleton = NULL;
 
-GeodeStatisticsFactory::GeodeStatisticsFactory(
-    StatisticsManager* statMngr) {
+GeodeStatisticsFactory::GeodeStatisticsFactory(StatisticsManager* statMngr) {
   m_name = "GeodeStatisticsFactory";
   m_id = ACE_OS::getpid();
   m_statsListUniqueId = 1;
@@ -112,19 +111,19 @@ Statistics* 
GeodeStatisticsFactory::createStatistics(StatisticsType* type) {
 }
 
 Statistics* GeodeStatisticsFactory::createStatistics(StatisticsType* type,
-                                                       const char* textId) {
+                                                     const char* textId) {
   return createAtomicStatistics(type, textId, 0);
 }
 
 Statistics* GeodeStatisticsFactory::createStatistics(StatisticsType* type,
-                                                       const char* textId,
-                                                       int64 numericId) {
+                                                     const char* textId,
+                                                     int64 numericId) {
   return createAtomicStatistics(type, textId, 0);
 }
 
 Statistics* GeodeStatisticsFactory::createOsStatistics(StatisticsType* type,
-                                                         const char* textId,
-                                                         int64 numericId) {
+                                                       const char* textId,
+                                                       int64 numericId) {
   // Validate input
   if (type == NULL) {
     throw IllegalArgumentException("StatisticsType* is Null");
@@ -148,13 +147,14 @@ Statistics* 
GeodeStatisticsFactory::createAtomicStatistics(
   return createAtomicStatistics(type, NULL, 0);
 }
 
-Statistics* GeodeStatisticsFactory::createAtomicStatistics(
-    StatisticsType* type, const char* textId) {
+Statistics* GeodeStatisticsFactory::createAtomicStatistics(StatisticsType* 
type,
+                                                           const char* textId) 
{
   return createAtomicStatistics(type, textId, 0);
 }
 
-Statistics* GeodeStatisticsFactory::createAtomicStatistics(
-    StatisticsType* type, const char* textId, int64 numericId) {
+Statistics* GeodeStatisticsFactory::createAtomicStatistics(StatisticsType* 
type,
+                                                           const char* textId,
+                                                           int64 numericId) {
   // Validate input
   if (type == NULL) {
     throw IllegalArgumentException("StatisticsType* is Null");
@@ -203,9 +203,10 @@ StatisticsTypeImpl* 
GeodeStatisticsFactory::addType(StatisticsTypeImpl* st) {
 /**
  * Creates  a StatisticType for the given shared class.
  */
-StatisticsType* GeodeStatisticsFactory::createType(
-    const char* name, const char* description, StatisticDescriptor** stats,
-    int32 statsLength) {
+StatisticsType* GeodeStatisticsFactory::createType(const char* name,
+                                                   const char* description,
+                                                   StatisticDescriptor** stats,
+                                                   int32 statsLength) {
   StatisticsTypeImpl* st =
       new StatisticsTypeImpl(name, description, stats, statsLength);
 

http://git-wip-us.apache.org/repos/asf/geode/blob/3b389a08/src/pdxautoserializer/ASCLIBuiltins.hpp
----------------------------------------------------------------------
diff --git a/src/pdxautoserializer/ASCLIBuiltins.hpp 
b/src/pdxautoserializer/ASCLIBuiltins.hpp
index ec6221e..32bc855 100644
--- a/src/pdxautoserializer/ASCLIBuiltins.hpp
+++ b/src/pdxautoserializer/ASCLIBuiltins.hpp
@@ -26,12 +26,9 @@
 using namespace System;
 using namespace System::Collections::Generic;
 
-namespace Apache
-{
-  namespace Geode
-  {
-    namespace Client
-    {
+namespace Apache {
+namespace Geode {
+namespace Client {
 namespace Serializer {
 
 /**

Reply via email to