Commit 3356688e authored by Tristan Cavelier's avatar Tristan Cavelier

queries src moved

parent e97727d0
......@@ -99,9 +99,10 @@ Query.prototype.exec = function (item_list, option) {
*
* @method match
* @param {Object} item The object to test
* @param {String} wildcard_character The wildcard character to use
* @return {Boolean} true if match, false otherwise
*/
Query.prototype.match = function (item, wildcard_character) {
Query.prototype.match = function () {
return true;
};
......
......@@ -10,7 +10,9 @@ var query_class_dict = {};
*
* @class QueryFactory
*/
function QueryFactory() {}
function QueryFactory() {
return;
}
/**
* Creates Query object from a search text string or a serialized version
......
......@@ -155,7 +155,9 @@ function inherits(constructor, superConstructor) {
/**
* Does nothing
*/
function emptyFunction() {}
function emptyFunction() {
return;
}
/**
* Filter a list of items, modifying them to select only wanted keys. If
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment