diff options
author | Alan Conway <aconway@apache.org> | 2010-03-31 16:52:50 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-03-31 16:52:50 +0000 |
commit | dda98127df553def41fb332f714c2f91858a7ea3 (patch) | |
tree | 85ce770251b694656176e4e29e055194293f430d /cpp/src/qpid/cluster/StoreStatus.h | |
parent | f6f1900eb98cc1773a88a3ec309afa646438a384 (diff) | |
download | qpid-python-dda98127df553def41fb332f714c2f91858a7ea3.tar.gz |
Cluster: remove un-necessary code for config-seq.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929616 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/StoreStatus.h')
-rw-r--r-- | cpp/src/qpid/cluster/StoreStatus.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cpp/src/qpid/cluster/StoreStatus.h b/cpp/src/qpid/cluster/StoreStatus.h index b496fe0dc2..d9e4549175 100644 --- a/cpp/src/qpid/cluster/StoreStatus.h +++ b/cpp/src/qpid/cluster/StoreStatus.h @@ -47,11 +47,9 @@ class StoreStatus const Uuid& getClusterId() const { return clusterId; } const Uuid& getShutdownId() const { return shutdownId; } - framing::SequenceNumber getConfigSeq() const { return configSeq; } void dirty(const Uuid& clusterId); // Mark the store in use by clusterId. void clean(const Uuid& shutdownId); // Mark the store clean at shutdownId - void setConfigSeq(framing::SequenceNumber seq); // Update the config seq number. void load(); void save(); @@ -62,7 +60,6 @@ class StoreStatus framing::cluster::StoreState state; Uuid clusterId, shutdownId; std::string dataDir; - framing::SequenceNumber configSeq; }; const char* stateName(framing::cluster::StoreState); |