From a189eb1e93dfd9800d4bbc8c36288c54c1144239 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Thu, 27 Aug 2015 17:18:28 +0300 Subject: [PATCH] cql3: Kill some ifdef'd code from cf_prop_defs.hh Signed-off-by: Pekka Enberg --- cql3/statements/cf_prop_defs.hh | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/cql3/statements/cf_prop_defs.hh b/cql3/statements/cf_prop_defs.hh index 5d53cefe10..df15bc72e4 100644 --- a/cql3/statements/cf_prop_defs.hh +++ b/cql3/statements/cf_prop_defs.hh @@ -64,13 +64,6 @@ private: std::experimental::optional _compaction_strategy_class; public: void validate(); - -#if 0 - public Class getCompactionStrategy() - { - return compactionStrategyClass; - } -#endif std::map get_compaction_options() const; std::map get_compression_options() const; #if 0 @@ -90,16 +83,7 @@ public: return options; } #endif - void apply_to_builder(schema_builder& builder); - -#if 0 - @Override - public String toString() - { - return String.format("CFPropDefs(%s)", properties.toString()); - } -#endif void validate_minimum_int(const sstring& field, int32_t minimum_value, int32_t default_value) const; };