Skip to content

Commit

Permalink
fixes flutter#16
Browse files Browse the repository at this point in the history
  • Loading branch information
dam0vm3nt committed Aug 7, 2016
1 parent 7e74605 commit 7b93973
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ class Entry implements Comparable {
/// location in the target file. We sort primarily by the target offset
/// because source map files are encoded by printing each mapping in order as
/// they appear in the target file.
int compareTo(Entry other) {
int compareTo(_other) {
Entry other = _other as Entry;
int res = target.compareTo(other.target);
if (res != 0) return res;
res = source.sourceUrl.toString().compareTo(
Expand Down

0 comments on commit 7b93973

Please sign in to comment.