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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TryStatement.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/TryStatement.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TryStatement.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TryStatement.java (working copy)
@@ -18,7 +18,7 @@
import java.util.List;
/**
- * Instances of the class <code>TryStatement</code> represent a try statement.
+ * Instances of the class {@code TryStatement} represent a try statement.
*
* <pre>
* tryStatement ::=
@@ -45,14 +45,14 @@
private NodeList<CatchClause> catchClauses = new NodeList<CatchClause>(this);
/**
- * The token representing the 'finally' keyword, or <code>null</code> if the statement does not
- * contain a finally clause.
+ * The token representing the 'finally' keyword, or {@code null} if the statement does not contain
+ * a finally clause.
*/
private Token finallyKeyword;
/**
- * The finally clause contained in the try statement, or <code>null</code> if the statement does
- * not contain a finally clause.
+ * The finally clause contained in the try statement, or {@code null} if the statement does not
+ * contain a finally clause.
*/
private Block finallyClause;
@@ -121,8 +121,8 @@
}
/**
- * Return the finally clause contained in the try statement, or <code>null</code> if the statement
- * does not contain a finally clause.
+ * Return the finally clause contained in the try statement, or {@code null} if the statement does
+ * not contain a finally clause.
*
* @return the finally clause contained in the try statement
*/
@@ -131,8 +131,8 @@
}
/**
- * Return the token representing the 'finally' keyword, or <code>null</code> if the statement does
- * not contain a finally clause.
+ * Return the token representing the 'finally' keyword, or {@code null} if the statement does not
+ * contain a finally clause.
*
* @return the token representing the 'finally' keyword
*/

Powered by Google App Engine
This is Rietveld 408576698