Skip to content

Commit

Permalink
checked mode fix; add type annotation (flutter#3737)
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed May 4, 2016
1 parent a5eb4c0 commit 61c0037
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 27 deletions.
25 changes: 0 additions & 25 deletions dev/dartdoc.dart

This file was deleted.

2 changes: 1 addition & 1 deletion packages/flutter_markdown/lib/src/markdown_style_raw.dart
Expand Up @@ -100,7 +100,7 @@ class MarkdownStyleRaw {
Map<String, TextStyle> get styles => _styles;

void _init() {
_styles = {
_styles = <String, TextStyle>{
'a': a,
'p': p,
'li': p,
Expand Down
Expand Up @@ -425,6 +425,7 @@ class FlutterCommandRunner extends CommandRunner {
.listSync(followLinks: false)
.expand((FileSystemEntity entity) {
return entity is Directory ? _gatherProjectPaths(entity.path) : <String>[];
});
})
.toList();
}
}

0 comments on commit 61c0037

Please sign in to comment.