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

Unified Diff: sdk/lib/_internal/dartdoc/lib/dartdoc.dart

Issue 12208017: Removed some cruft from ApiDoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/dartdoc/lib/dartdoc.dart
diff --git a/sdk/lib/_internal/dartdoc/lib/dartdoc.dart b/sdk/lib/_internal/dartdoc/lib/dartdoc.dart
index 2520489dca15a220e690d97c1d6c377cfb9fe456..e9882ff8fe61cec26f6448c3b1d39ba1fe53f4ea 100644
--- a/sdk/lib/_internal/dartdoc/lib/dartdoc.dart
+++ b/sdk/lib/_internal/dartdoc/lib/dartdoc.dart
@@ -1465,9 +1465,6 @@ class Dartdoc {
}
}
- DocComment createDocComment(String text, [ClassMirror inheritedFrom]) =>
- new DocComment(text, inheritedFrom);
-
/** Get the doc comment associated with the given library. */
DocComment getLibraryComment(LibraryMirror library) => getComment(library);
@@ -1511,7 +1508,7 @@ class Dartdoc {
}
}
if (comment == null) return null;
- return createDocComment(comment, inheritedFrom);
+ return new DocComment(comment, inheritedFrom);
}
/**
« no previous file with comments | « no previous file | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698