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

Unified Diff: compiler/java/com/google/dart/compiler/parser/DartParser.java

Issue 10882061: Clean up some warnings. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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: compiler/java/com/google/dart/compiler/parser/DartParser.java
===================================================================
--- compiler/java/com/google/dart/compiler/parser/DartParser.java (revision 11395)
+++ compiler/java/com/google/dart/compiler/parser/DartParser.java (working copy)
@@ -699,6 +699,7 @@
expect(Token.LPAREN);
beginLiteral();
expect(Token.STRING);
+ @SuppressWarnings("unused")
DartStringLiteral resourceUri = done(DartStringLiteral.get(ctx.getTokenString()));
expectCloseParen();
expect(Token.SEMICOLON);
@@ -3056,6 +3057,8 @@
* error that needs to be handled in an enclosing context.
*/
private static class StringInterpolationParseError extends RuntimeException {
+ private static final long serialVersionUID = 1L;
+
public StringInterpolationParseError() {
super();
}

Powered by Google App Engine
This is Rietveld 408576698