Skip to content

Commit 7c13c25

Browse files
committed
Don't add parameters to Dash search index
1 parent 5999888 commit 7c13c25

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

lib/utils.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,6 @@ module.exports.buildDashDocSet = function (input) {
6363
$path: method.uid + '.html'
6464
});
6565

66-
if (method.tags.param) {
67-
68-
method.tags.param.forEach(function (param) {
69-
70-
db.run('INSERT OR IGNORE INTO searchIndex(name, type, path) VALUES ($name, $type, $path);', {
71-
$name: param.name,
72-
$type: 'Parameter',
73-
$path: method.uid + '.html#//apple_ref/cpp/Parameter/' + param.name
74-
});
75-
76-
});
77-
78-
}
79-
8066
if (method.tags.property) {
8167

8268
method.tags.property.forEach(function (property) {

0 commit comments

Comments
 (0)