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()); |
} |
} |