10000 jslint · ezhangle/arangodb@f5ccad8 · GitHub
[go: up one dir, main page]

Skip to content

Commit f5ccad8

Browse files
committed
jslint
1 parent 4063a78 commit f5ccad8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/server/modules/org/arangodb/actions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2213,14 +2213,14 @@ function rewriteRequest (req, res, options, next) {
22132213
function pathHandler (req, res, options, next) {
22142214
'use strict';
22152215

2216-
var filename;
2216+
var filename, encodedFilename;
22172217
filename = fs.join(options.path, fs.join.apply(fs.join, req.suffix));
22182218

22192219
if (options.hasOwnProperty('root')) {
22202220
var root = options.root;
22212221

22222222
filename = fs.join(root, filename);
2223-
var encodedFilename = filename;
2223+
encodedFilename = filename;
22242224
}
22252225
if (fs.exists(filename)) {
22262226
res.responseCode = exports.HTTP_OK;

0 commit comments

Comments
 (0)
0