summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2017-01-03 05:15:50 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2017-01-03 05:15:50 +0900
commit371d607852eb66e600df7d91b2943b7b53eeff90 (patch)
tree38204b7ad95981797d8fba06514bd491be3245ae /src
parent:sparkles: (diff)
downloadsharkey-371d607852eb66e600df7d91b2943b7b53eeff90.tar.gz
sharkey-371d607852eb66e600df7d91b2943b7b53eeff90.tar.bz2
sharkey-371d607852eb66e600df7d91b2943b7b53eeff90.zip
Remove useless comments
Diffstat (limited to 'src')
-rw-r--r--src/index.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts
index e10648bbbd..5e287c54ab 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -43,10 +43,9 @@ main();
* Init proccess
*/
function main(): void {
- // Master
if (cluster.isMaster) {
master();
- } else { // Workers
+ } else {
worker();
}
}