From 4253f9e083874504d7e13f2656a9da0eb81b413f Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Wed, 1 Mar 2017 14:18:46 +0900
Subject: [PATCH] Clean up

---
 src/web/app/common/scripts/text-compiler.js | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/web/app/common/scripts/text-compiler.js b/src/web/app/common/scripts/text-compiler.js
index a3c1fe8dde..3ff617484b 100644
--- a/src/web/app/common/scripts/text-compiler.js
+++ b/src/web/app/common/scripts/text-compiler.js
@@ -9,13 +9,10 @@ const escape = function(text) {
 		.replace(/</g, '&lt;');
 };
 
-module.exports = function(tokens, shouldBreak, shouldEscape) {
+module.exports = function(tokens, shouldBreak) {
 	if (shouldBreak == null) {
 		shouldBreak = true;
 	}
-	if (shouldEscape != null) {
-		alert('do not use this option')
-	}
 
 	const me = riot.mixin('i').me;