Commit 20eefbf5 authored by Ian Hickson's avatar Ian Hickson

Remove stray print from material gallery. (#3463)

Makes the tests noisy.
parent 6ca36a94
...@@ -11,11 +11,8 @@ const String _kEndTag = '// END'; ...@@ -11,11 +11,8 @@ const String _kEndTag = '// END';
Map<String, String> _exampleCode; Map<String, String> _exampleCode;
Future<String> getExampleCode(String tag, AssetBundle bundle) async { Future<String> getExampleCode(String tag, AssetBundle bundle) async {
print('getExampleCode tag: $tag bundle: $bundle');
if (_exampleCode == null) if (_exampleCode == null)
await _parseExampleCode(bundle); await _parseExampleCode(bundle);
return _exampleCode[tag]; return _exampleCode[tag];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment