From 9a1ff135957fc955324958f3228c713ac19bd4cb Mon Sep 17 00:00:00 2001
From: Aya Morisawa <AyaMorisawa4869@gmail.com>
Date: Tue, 3 Jan 2017 05:25:38 +0900
Subject: [PATCH] Remove needless check

---
 src/utils/dependencyInfo.ts | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/utils/dependencyInfo.ts b/src/utils/dependencyInfo.ts
index b934cccf98..863136743b 100644
--- a/src/utils/dependencyInfo.ts
+++ b/src/utils/dependencyInfo.ts
@@ -9,8 +9,6 @@ export default class {
 	}
 
 	showAll(): void {
-		this.show('Node.js', 'node -v', x => x.match(/^v(.*)\r?\n$/));
-		this.show('npm', 'npm -v', x => x.match(/^(.*)\r?\n$/));
 		this.show('MongoDB', 'mongo --version', x => x.match(/^MongoDB shell version: (.*)\r?\n$/));
 		this.show('Redis', 'redis-server --version', x => x.match(/v=([0-9\.]*)/));
 		this.show('GraphicsMagick', 'gm -version', x => x.match(/^GraphicsMagick ([0-9\.]*) .*/));