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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/FileUriResolver.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/FileUriResolver.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/FileUriResolver.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/FileUriResolver.java (working copy)
@@ -17,27 +17,27 @@
import java.net.URI;
/**
- * Instances of the class <code>FileUriResolver</code> resolve <code>file</code> URI's.
+ * Instances of the class {@code FileUriResolver} resolve {@code file} URI's.
*/
public class FileUriResolver extends UriResolver {
/**
- * The name of the <code>file</code> scheme.
+ * The name of the {@code file} scheme.
*/
private static final String FILE_SCHEME = "file";
/**
- * Return <code>true</code> if the given URI is a <code>file</code> URI.
+ * Return {@code true} if the given URI is a {@code file} URI.
*
* @param uri the URI being tested
- * @return <code>true</code> if the given URI is a <code>file</code> URI
+ * @return {@code true} if the given URI is a {@code file} URI
*/
public static boolean isFileUri(URI uri) {
return uri.getScheme().equals(FILE_SCHEME);
}
/**
- * Initialize a newly created resolver to resolve <code>file</code> URI's relative to the given
- * root directory.
+ * Initialize a newly created resolver to resolve {@code file} URI's relative to the given root
+ * directory.
*/
public FileUriResolver() {
super();

Powered by Google App Engine
This is Rietveld 408576698