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 24 }
25 25  
26 26 process(req, res);
27   -};
  27 +}
28 28  
29 29 function process(req, res) {
30 30 var id = uuid.v4();
... ... @@ -104,6 +104,6 @@ function callCore(id, video, subtitle, req, res) {
104 104 console.log("=== Core: " + command_line);
105 105  
106 106 core.call(id, command_line, req, res);
107   -};
  107 +}
108 108  
109 109 module.exports.init = init;
... ...