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

Unified Diff: compiler/javatests/com/google/dart/compiler/end2end/inc/MemoryLibrarySource.java

Issue 9479013: Remove backends. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More clean up Created 8 years, 10 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/javatests/com/google/dart/compiler/end2end/inc/MemoryLibrarySource.java
diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/MemoryLibrarySource.java b/compiler/javatests/com/google/dart/compiler/end2end/inc/MemoryLibrarySource.java
index e0469f23fb13e3da88f1140ae7a0d0fda9b04776..8a1bf0a3f5cbde4064c533dba42169845f068049 100644
--- a/compiler/javatests/com/google/dart/compiler/end2end/inc/MemoryLibrarySource.java
+++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/MemoryLibrarySource.java
@@ -14,7 +14,6 @@ import java.io.Reader;
import java.io.StringReader;
import java.net.URI;
import java.net.URISyntaxException;
-import java.util.Date;
import java.util.Map;
/**
@@ -103,6 +102,6 @@ public class MemoryLibrarySource implements LibrarySource {
*/
public void setContent(String relPath, String content) {
sourceContentMap.put(relPath, content);
- sourceLastModifiedMap.put(relPath, new Date().getTime());
+ sourceLastModifiedMap.put(relPath, System.currentTimeMillis());
}
}

Powered by Google App Engine
This is Rietveld 408576698