From 6853a9621eda668965bb56380fbc0a8e3ba76c2d Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Tue, 23 Jan 2018 01:16:20 +0100
Subject: [PATCH] remove extra braces

---
 sha1.js | 2 --
 1 file changed, 2 deletions(-)

diff --git a/sha1.js b/sha1.js
index cc352d0..f8b23e9 100644
--- a/sha1.js
+++ b/sha1.js
@@ -58,9 +58,7 @@ Sha1.Compute = function(subject)
 		var w = new Array(80);
 		for (j=0; j<16; j++) w[j] = blocks[i][j];
 		for (j=16; j<80; j++)
-		{
 			w[j] = Sha1.LeftRotate(w[j-3] ^ w[j-8] ^ w[j-14] ^ w[j-16], 1);
-		}
 
 		// initialize a,b,c,d,e variables
 		a = h0;
-- 
2.44.0