浏览代码

EAGLESIX-3009: Removed unnecessary memory related functions

David Aebersold 11 年之前
父节点
当前提交
e684ef4f92
共有 1 个文件被更改,包括 0 次插入21 次删除
  1. 0 21
      lib/pipeline/matcher/NotMatchExpression.js

+ 0 - 21
lib/pipeline/matcher/NotMatchExpression.js

@@ -29,27 +29,6 @@ proto.equivalent = function equivalent(other) {
 	return other._matchType == 'NOT' && this._exp.equivalent(other.getChild(0));
 };
 
-/**
- *
- * Return the _exp property
- * @method getChild
- * @param i
- *
- */
-proto.getChild = function getChild(i) {
-	return this._exp.get();
-};
-
-/**
- *
- * Return the released child
- * @method releaseChild
- *
- */
-proto.releaseChild = function releaseChild() {
-	return this._exp.release();
-};
-
 /**
  *
  * Return the reset child