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

Unified Diff: lib/crypto.dart

Issue 1350913002: Run the formatter over crypto. (Closed) Base URL: git@github.com:dart-lang/crypto.git@master
Patch Set: Fix a missing value. Created 5 years, 3 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
« no previous file with comments | « no previous file | lib/src/base64.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/crypto.dart
diff --git a/lib/crypto.dart b/lib/crypto.dart
index eb2905a7e2dfb10abf6d28ba5b8ed34c20a37835..5e85a0a8dc8217dd72f471cff36399e2caa1d9a4 100644
--- a/lib/crypto.dart
+++ b/lib/crypto.dart
@@ -87,14 +87,10 @@ class CryptoUtils {
*
*/
static String bytesToBase64(List<int> bytes,
- {bool urlSafe : false,
- bool addLineSeparator : false}) {
- return _CryptoUtils.bytesToBase64(bytes,
- urlSafe,
- addLineSeparator);
+ {bool urlSafe: false, bool addLineSeparator: false}) {
+ return _CryptoUtils.bytesToBase64(bytes, urlSafe, addLineSeparator);
}
-
/**
* Converts a Base 64 encoded String into list of bytes.
*
« no previous file with comments | « no previous file | lib/src/base64.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698