Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4197)

Unified Diff: chrome/browser/resources/cryptotoken/sha256.js

Issue 2900253006: WebUI: Fix more violations of no-extra-semi lint rule. (Closed)
Patch Set: clang-format Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/cryptotoken/sha256.js
diff --git a/chrome/browser/resources/cryptotoken/sha256.js b/chrome/browser/resources/cryptotoken/sha256.js
index 63b62fb11bb2e584237f082eb8ed21b50e687538..ac9dbde4c25f7b455527f0ae7012d28796bd5ad8 100644
--- a/chrome/browser/resources/cryptotoken/sha256.js
+++ b/chrome/browser/resources/cryptotoken/sha256.js
@@ -57,7 +57,7 @@ SHA256.prototype._compress = function(buf) {
var W = this._W;
var k = this._k;
- function _rotr(w, r) { return ((w << (32 - r)) | (w >>> r)); };
+ function _rotr(w, r) { return ((w << (32 - r)) | (w >>> r)); }
// get 16 big endian words
for (var i = 0; i < 64; i += 4) {

Powered by Google App Engine
This is Rietveld 408576698