Make the compilation maps be output on every compile - they're relatively small and contain useful information
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10705 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/core/linker/CrossSiteIframeLinker.java b/dev/core/src/com/google/gwt/core/linker/CrossSiteIframeLinker.java
index 72044a8..4635518 100644
--- a/dev/core/src/com/google/gwt/core/linker/CrossSiteIframeLinker.java
+++ b/dev/core/src/com/google/gwt/core/linker/CrossSiteIframeLinker.java
@@ -461,7 +461,7 @@
@Override
protected void maybeOutputPropertyMap(TreeLogger logger, LinkerContext context,
ArtifactSet toReturn) {
- if (!shouldOutputPropertyMap(context) || permutationsUtil.getPermutationsMap() == null
+ if (permutationsUtil.getPermutationsMap() == null
|| permutationsUtil.getPermutationsMap().isEmpty()) {
return;
}
@@ -497,10 +497,6 @@
return true;
}
- protected boolean shouldOutputPropertyMap(LinkerContext context) {
- return false;
- }
-
/**
* Returns whether to use "self" for $wnd and $doc references. Defaults to false.
* Useful for worker threads.