瀏覽代碼

remove unused function renderAdhocFilters

Sven Klemm 7 年之前
父節點
當前提交
17b46804e8
共有 1 個文件被更改,包括 0 次插入6 次删除
  1. 0 6
      public/app/plugins/datasource/postgres/postgres_query.ts

+ 0 - 6
public/app/plugins/datasource/postgres/postgres_query.ts

@@ -236,10 +236,4 @@ export default class PostgresQuery {
     return query;
   }
 
-  renderAdhocFilters(filters) {
-    var conditions = _.map(filters, (tag, index) => {
-      return this.renderWhereConstraint(tag, index, false);
-    });
-    return conditions.join(' ');
-  }
 }