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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/DartUriResolver.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/DartUriResolver.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/DartUriResolver.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/DartUriResolver.java (working copy)
@@ -20,7 +20,7 @@
import java.net.URI;
/**
- * Instances of the class <code>DartUriResolver</code> resolve <code>dart</code> URI's.
+ * Instances of the class {@code DartUriResolver} resolve {@code dart} URI's.
*/
public class DartUriResolver extends UriResolver {
/**
@@ -34,15 +34,15 @@
private final Platform platform;
/**
- * The name of the <code>dart</code> scheme.
+ * The name of the {@code dart} scheme.
*/
private static final String DART_SCHEME = "dart";
/**
- * Return <code>true</code> if the given URI is a <code>dart:</code> URI.
+ * Return {@code true} if the given URI is a {@code dart:} URI.
*
* @param uri the URI being tested
- * @return <code>true</code> if the given URI is a <code>dart:</code> URI
+ * @return {@code true} if the given URI is a {@code dart:} URI
*/
public static boolean isDartUri(URI uri) {
return uri.getScheme().equals(DART_SCHEME);

Powered by Google App Engine
This is Rietveld 408576698