From: Robin H. Johnson Date: Thu, 3 Dec 2015 23:43:01 +0000 (-0800) Subject: cleanup: remove dead function. X-Git-Tag: v10.0.4~152^2^2~14 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=981e1087c90457feae9496436f75bb69fa324e8e;p=ceph.git cleanup: remove dead function. Signed-off-by: Robin H. Johnson --- diff --git a/src/rgw/rgw_op.h b/src/rgw/rgw_op.h index bc2acd67d6c..19acfa3fb92 100644 --- a/src/rgw/rgw_op.h +++ b/src/rgw/rgw_op.h @@ -114,9 +114,6 @@ public: virtual RGWOpType get_type() { return RGW_OP_UNKNOWN; } virtual uint32_t op_mask() { return 0; } - virtual bool supports_website() { - return false; - } virtual int error_handler(int err_no, string *error_content); }; @@ -190,9 +187,6 @@ public: virtual RGWOpType get_type() { return RGW_OP_GET_OBJ; } virtual uint32_t op_mask() { return RGW_OP_TYPE_READ; } virtual bool need_object_expiration() { return false; } - virtual bool supports_website() { - return true; - } }; class RGWGetObj_CB : public RGWGetDataCB @@ -246,9 +240,6 @@ public: virtual const string name() { return "list_buckets"; } virtual RGWOpType get_type() { return RGW_OP_LIST_BUCKETS; } virtual uint32_t op_mask() { return RGW_OP_TYPE_READ; } - virtual bool supports_website() { - return true; - } }; class RGWStatAccount : public RGWOp {