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

Unified Diff: lib/dartdoc/dartdoc.dart

Issue 10513007: dartdoc: --omit-generation-time flag to exclude generation time from output (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: now <= 80 cols Created 8 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dartdoc/dartdoc.dart
diff --git a/lib/dartdoc/dartdoc.dart b/lib/dartdoc/dartdoc.dart
index 4c81a36c8befd1cd9462c49506d928ab6e706c6a..184a46913d350f634860cb5d164734698b51502f 100644
--- a/lib/dartdoc/dartdoc.dart
+++ b/lib/dartdoc/dartdoc.dart
@@ -118,7 +118,9 @@ void main() {
if (mode != null) dartdoc.mode = mode;
if (outputDir != null) dartdoc.outputDir = outputDir;
if (generateAppCache != null) dartdoc.generateAppCache = generateAppCache;
- if (omitGenerationTime != null) dartdoc.omitGenerationTime = omitGenerationTime;
+ if (omitGenerationTime != null) {
+ dartdoc.omitGenerationTime = omitGenerationTime;
+ }
cleanOutputDirectory(dartdoc.outputDir);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698