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

Unified Diff: pkg/utf/lib/utf32.dart

Issue 25428003: Fix warnings and hints. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Less hiding FTW. Created 7 years, 2 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 | « pkg/utf/lib/utf16.dart ('k') | pkg/utf/lib/utf8.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/utf/lib/utf32.dart
diff --git a/pkg/utf/lib/utf32.dart b/pkg/utf/lib/utf32.dart
index acd465c65f7e694daa29cc2ad35ca41b8e3c0fc2..885ed947a5babe31d1ea16a3c6ca6a1e83cd9b5c 100644
--- a/pkg/utf/lib/utf32.dart
+++ b/pkg/utf/lib/utf32.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-part of dart.utf;
+part of utf;
/**
* Decodes the UTF-32 bytes as an iterable. Thus, the consumer can only convert
@@ -70,7 +70,7 @@ String decodeUtf32(List<int> bytes, [int offset = 0, int length,
String decodeUtf32be(
List<int> bytes, [int offset = 0, int length, bool stripBom = true,
int replacementCodepoint = UNICODE_REPLACEMENT_CHARACTER_CODEPOINT]) =>
- new String.fromCharCodes((new Utf32beBytesDecoder(bytes, offset, length,
+ new String.fromCharCodes((new Utf32beBytesDecoder(bytes, offset, length,
stripBom, replacementCodepoint)).decodeRest());
/**
« no previous file with comments | « pkg/utf/lib/utf16.dart ('k') | pkg/utf/lib/utf8.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698