mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-26 01:21:40 +00:00
Decaf cleanup: remove unused variables
This commit is contained in:
parent
6b5760ca28
commit
ceb77f4c93
1 changed files with 1 additions and 3 deletions
|
@ -1,9 +1,7 @@
|
|||
/* eslint-disable
|
||||
camelcase,
|
||||
handle-callback-err,
|
||||
no-unused-vars,
|
||||
*/
|
||||
let ProjectManager
|
||||
const RedisManager = require('./RedisManager')
|
||||
const ProjectHistoryRedisManager = require('./ProjectHistoryRedisManager')
|
||||
const DocumentManager = require('./DocumentManager')
|
||||
|
@ -13,7 +11,7 @@ const logger = require('logger-sharelatex')
|
|||
const Metrics = require('./Metrics')
|
||||
const Errors = require('./Errors')
|
||||
|
||||
module.exports = ProjectManager = {
|
||||
module.exports = {
|
||||
flushProjectWithLocks(project_id, _callback) {
|
||||
const timer = new Metrics.Timer('projectManager.flushProjectWithLocks')
|
||||
const callback = function (...args) {
|
||||
|
|
Loading…
Reference in a new issue