Commit 2ebb8a32ef3d23164c28f8766a05b0afc65a3f0a

Authored by Cassio Cabral
1 parent 505a1abd
Exists in master and in 1 other branch devel

remove alguns ';' desnecessarios

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
endpoints/video.js
@@ -24,7 +24,7 @@ function init(req, res) { @@ -24,7 +24,7 @@ function init(req, res) {
24 } 24 }
25 25
26 process(req, res); 26 process(req, res);
27 -}; 27 +}
28 28
29 function process(req, res) { 29 function process(req, res) {
30 var id = uuid.v4(); 30 var id = uuid.v4();
@@ -104,6 +104,6 @@ function callCore(id, video, subtitle, req, res) { @@ -104,6 +104,6 @@ function callCore(id, video, subtitle, req, res) {
104 console.log("=== Core: " + command_line); 104 console.log("=== Core: " + command_line);
105 105
106 core.call(id, command_line, req, res); 106 core.call(id, command_line, req, res);
107 -}; 107 +}
108 108
109 module.exports.init = init; 109 module.exports.init = init;