summaryrefslogtreecommitdiff
path: root/cppe/src
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src')
-rw-r--r--cppe/src/IceE/TraceLevels.cpp5
-rw-r--r--cppe/src/IceE/TraceLevels.h3
2 files changed, 1 insertions, 7 deletions
diff --git a/cppe/src/IceE/TraceLevels.cpp b/cppe/src/IceE/TraceLevels.cpp
index 0f4872fe898..1dc8683ba4d 100644
--- a/cppe/src/IceE/TraceLevels.cpp
+++ b/cppe/src/IceE/TraceLevels.cpp
@@ -25,14 +25,11 @@ IceInternal::TraceLevels::TraceLevels(const PropertiesPtr& properties) :
retry(0),
retryCat("Retry"),
location(0),
- locationCat("Location"),
- slicing(0),
- slicingCat("Slicing")
+ locationCat("Location")
{
const string keyBase = "IceE.Trace.";
const_cast<int&>(network) = properties->getPropertyAsInt(keyBase + networkCat);
const_cast<int&>(protocol) = properties->getPropertyAsInt(keyBase + protocolCat);
const_cast<int&>(retry) = properties->getPropertyAsInt(keyBase + retryCat);
const_cast<int&>(location) = properties->getPropertyAsInt(keyBase + locationCat);
- const_cast<int&>(slicing) = properties->getPropertyAsInt(keyBase + slicingCat);
}
diff --git a/cppe/src/IceE/TraceLevels.h b/cppe/src/IceE/TraceLevels.h
index e4f8e4249bf..63c8ebe824c 100644
--- a/cppe/src/IceE/TraceLevels.h
+++ b/cppe/src/IceE/TraceLevels.h
@@ -34,9 +34,6 @@ public:
const int location;
const char* locationCat;
-
- const int slicing;
- const char* slicingCat;
};
}