Bug 1374427 - remove redundant function names in js-doc. r=MattN

MozReview-Commit-ID: 3EBT7CDl3pC
This commit is contained in:
Jonathan Guillotte-Blouin
2017-06-19 14:11:21 -07:00
parent 2685e8b6d5
commit b956a19bfb
2 changed files with 0 additions and 14 deletions

View File

@@ -438,8 +438,6 @@ function dbCreateAsyncStatement(aQuery, aParams, aBindingArrays) {
}
/**
* dbInit
*
* Attempts to initialize the database. This creates the file if it doesn't
* exist, performs any migrations, etc.
*/
@@ -540,8 +538,6 @@ var Migrators = {
};
/**
* dbAreExpectedColumnsPresent
*
* Sanity check to ensure that the columns this version of the code expects
* are present in the DB we're using.
*/
@@ -565,8 +561,6 @@ function dbAreExpectedColumnsPresent() {
}
/**
* dbCleanup
*
* Called when database creation fails. Finalizes database statements,
* closes the database connection, deletes the database file.
*/
@@ -610,8 +604,6 @@ function dbClose(aShutdown) {
}
/**
* updateFormHistoryWrite
*
* Constructs and executes database statements from a pre-processed list of
* inputted changes.
*/
@@ -722,8 +714,6 @@ function updateFormHistoryWrite(aChanges, aCallbacks) {
*/
/**
* expireOldEntriesDeletion
*
* Removes entries from database.
*/
function expireOldEntriesDeletion(aExpireTime, aBeginningCount) {
@@ -744,8 +734,6 @@ function expireOldEntriesDeletion(aExpireTime, aBeginningCount) {
}
/**
* expireOldEntriesVacuum
*
* Counts number of entries removed and shrinks database as necessary.
*/
function expireOldEntriesVacuum(aExpireTime, aBeginningCount) {

View File

@@ -155,8 +155,6 @@ function FormAutoComplete() {
}
/**
* FormAutoComplete
*
* Implements the nsIFormAutoComplete interface in the main process.
*/
FormAutoComplete.prototype = {