remove all but Get action
diff --git a/openstack/compute/v2/extensions/quota/urls.go b/openstack/compute/v2/extensions/quota/urls.go
index 2900b89..0c6e67f 100644
--- a/openstack/compute/v2/extensions/quota/urls.go
+++ b/openstack/compute/v2/extensions/quota/urls.go
@@ -8,18 +8,6 @@
return c.ServiceURL(resourcePath)
}
-func listURL(c *gophercloud.ServiceClient) string {
- return resourceURL(c)
-}
-
-func createURL(c *gophercloud.ServiceClient) string {
- return resourceURL(c)
-}
-
-func getURL(c *gophercloud.ServiceClient, name string) string {
- return c.ServiceURL(resourcePath, name)
-}
-
-func deleteURL(c *gophercloud.ServiceClient, name string) string {
- return getURL(c, name)
+func getURL(c *gophercloud.ServiceClient, tenantID string) string {
+ return c.ServiceURL(resourcePath, tenantID)
}