소스 검색

Unnecessary semicolons.

Herbert Vojčík 12 년 전
부모
커밋
13d26e8975
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      js/boot.js

+ 2 - 2
js/boot.js

@@ -719,7 +719,7 @@ function Smalltalk() {
 			.replace(/_eq/g, '=')
 			.replace(/_comma/g, ',')
 			.replace(/_at/g, '@')
-	};
+	}
 
 	/* Converts a JavaScript object to valid Smalltalk Object */
 	st.readJSObject = function(js) {
@@ -781,7 +781,7 @@ function SmalltalkMethodContext(receiver, selector, temps, home) {
     //     smalltalk.thisContext = this;
     //     return this.method.apply(receiver, temps);
     // };
-};
+}
 
 inherits(SmalltalkMethodContext, SmalltalkObject);