]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
cleanup: remove dead function.
authorRobin H. Johnson <robin.johnson@dreamhost.com>
Thu, 3 Dec 2015 23:43:01 +0000 (15:43 -0800)
committerYehuda Sadeh <yehuda@redhat.com>
Fri, 15 Jan 2016 23:05:47 +0000 (15:05 -0800)
Signed-off-by: Robin H. Johnson <robin.johnson@dreamhost.com>
src/rgw/rgw_op.h

index bc2acd67d6ce1d9dea139fba34e557e297c6aee9..19acfa3fb922c234388f9607f338547924722d1b 100644 (file)
@@ -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 {