| commit | 1bac7e0e51f0a18d12e939952fe8c9f72cad70d4 | [log] [tgz] |
|---|---|---|
| author | scottb@google.com <scottb@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Jan 09 02:11:38 2009 +0000 |
| committer | scottb@google.com <scottb@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Jan 09 02:11:38 2009 +0000 |
| tree | f6bfcf968de10943bbcdf266bc4dcdb0f078f714 | |
| parent | 20130b9c03866ede51b9f69f3e6f1afb802246d6 [diff] |
Was failing to clear out a cached value on refresh. Issue: 3180 git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.6@4418 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/javac/CompilationState.java b/dev/core/src/com/google/gwt/dev/javac/CompilationState.java index 0ad7a78..3ada290 100644 --- a/dev/core/src/com/google/gwt/dev/javac/CompilationState.java +++ b/dev/core/src/com/google/gwt/dev/javac/CompilationState.java
@@ -261,5 +261,6 @@ exposedUnits = Collections.unmodifiableSet(new HashSet<CompilationUnit>( unitMap.values())); exposedClassFileMap = null; + exposedClassFileMapBySource = null; } }