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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/FieldDeclaration.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/ast/FieldDeclaration.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/FieldDeclaration.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/FieldDeclaration.java (working copy)
@@ -16,8 +16,8 @@
import com.google.dart.engine.scanner.Token;
/**
- * Instances of the class <code>FieldDeclaration</code> represent the declaration of one or more
- * fields of the same type.
+ * Instances of the class {@code FieldDeclaration} represent the declaration of one or more fields
+ * of the same type.
*
* <pre>
* fieldDeclaration ::=
@@ -26,7 +26,7 @@
*/
public class FieldDeclaration extends TypeMember {
/**
- * The token representing the 'static' keyword, or <code>null</code> if the fields are not static.
+ * The token representing the 'static' keyword, or {@code null} if the fields are not static.
*/
private Token keyword;
@@ -93,7 +93,7 @@
}
/**
- * Return the token representing the 'static' keyword, or <code>null</code> if the fields are not
+ * Return the token representing the 'static' keyword, or {@code null} if the fields are not
* static.
*
* @return the token representing the 'static' keyword

Powered by Google App Engine
This is Rietveld 408576698