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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/UriResolver.java

Issue 10700082: Comment clean-up (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/UriResolver.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/UriResolver.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/UriResolver.java (working copy)
@@ -17,9 +17,9 @@
import java.net.URI;
/**
- * The abstract class <code>UriResolver</code> defines the behavior of objects that are used to
- * resolve URI's for a source factory. Subclasses of this class are expected to resolve a single
- * scheme of absolute URI.
+ * The abstract class {@code UriResolver} defines the behavior of objects that are used to resolve
+ * URI's for a source factory. Subclasses of this class are expected to resolve a single scheme of
+ * absolute URI.
*/
public abstract class UriResolver {
/**
@@ -32,8 +32,7 @@
/**
* Working on behalf of the given source factory, resolve the (possibly relative) contained URI
* against the URI associated with the containing source object. Return a {@link Source source}
- * representing the file to which it was resolved, or <code>null</code> if it could not be
- * resolved.
+ * representing the file to which it was resolved, or {@code null} if it could not be resolved.
*
* @param factory the source factory requesting the resolution of the URI
* @param containingSource the source containing the given URI
@@ -50,7 +49,7 @@
/**
* Resolve the given absolute URI. Return a {@link Source source} representing the file to which
- * it was resolved, or <code>null</code> if it could not be resolved.
+ * it was resolved, or {@code null} if it could not be resolved.
*
* @param uri the URI to be resolved
* @return a {@link Source source} representing the URI to which given URI was resolved
@@ -60,7 +59,7 @@
/**
* Resolve the relative (contained) URI against the URI associated with the containing source
* object. Return a {@link Source source} representing the file to which it was resolved, or
- * <code>null</code> if it could not be resolved.
+ * {@code null} if it could not be resolved.
*
* @param containingSource the source containing the given URI
* @param containedUri the (possibly relative) URI to be resolved against the containing source

Powered by Google App Engine
This is Rietveld 408576698