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

Unified Diff: sdk/lib/convert/base64.dart

Issue 2975193002: Fix bug in test's /none version. Update status files. (Closed)
Patch Set: Address comment Created 3 years, 5 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 | tests/language/assertion_initializer_const_function_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/base64.dart
diff --git a/sdk/lib/convert/base64.dart b/sdk/lib/convert/base64.dart
index 8414e5cf0d0d339bb5d28af5bd2979f14961b347..f39e0de436c2a6ec7cf0b2e264b015466048eb00 100644
--- a/sdk/lib/convert/base64.dart
+++ b/sdk/lib/convert/base64.dart
@@ -172,7 +172,7 @@ class Base64Codec extends Codec<List<int>, String> {
return source;
}
- static int _checkPadding(String source, int sourceIndex, int sourceEnd,
+ static void _checkPadding(String source, int sourceIndex, int sourceEnd,
int firstPadding, int paddingCount, int length) {
if (length % 4 != 0) {
throw new FormatException(
« no previous file with comments | « no previous file | tests/language/assertion_initializer_const_function_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698