Removed developer-facing message from module.cache.html because in some browser environments the content may be presented.

Patch by: rdayal
Review by bruce, jgw, scottb, jat, tobyr, mmendez


git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.4@1390 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/GWTCompiler.java b/dev/core/src/com/google/gwt/dev/GWTCompiler.java
index 0d63765..da7395b 100644
--- a/dev/core/src/com/google/gwt/dev/GWTCompiler.java
+++ b/dev/core/src/com/google/gwt/dev/GWTCompiler.java
@@ -461,15 +461,6 @@
     out.print("<body>");
     out.newlineOpt();
 
-    // A nice message in case someone opens the file directly.
-    //
-    out.print("<font face='arial' size='-1'>This script is part of module</font>");
-    out.newlineOpt();
-    out.print("<code>");
-    out.print(module.getName());
-    out.print("</code>");
-    out.newlineOpt();
-
     // Begin a script block inside the body. It's commented out so that the
     // browser won't mistake strings containing "<script>" for actual script.
     out.print("<script><!--");