summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/doc/ModelAdditions.scala2
-rw-r--r--src/compiler/scala/tools/nsc/doc/ModelFrames.scala2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/doc/ModelAdditions.scala b/src/compiler/scala/tools/nsc/doc/ModelAdditions.scala
index 7a684e3a51..47fc476846 100644
--- a/src/compiler/scala/tools/nsc/doc/ModelAdditions.scala
+++ b/src/compiler/scala/tools/nsc/doc/ModelAdditions.scala
@@ -191,7 +191,7 @@ class ModelAdditions(val global : Global) {
* </p>
*/"""
};
- ("Float" :: "Long" :: "Number" :: "Integer" :: Nil).foreach(boxedValDescr);
+ //("Float" :: "Long" :: "Number" :: "Integer" :: Nil).foreach(boxedValDescr);
object exceptions extends collection.jcl.TreeMap[String,(Symbol,String)] {
def f(name : String) = {
diff --git a/src/compiler/scala/tools/nsc/doc/ModelFrames.scala b/src/compiler/scala/tools/nsc/doc/ModelFrames.scala
index e92f687b9b..370a877f66 100644
--- a/src/compiler/scala/tools/nsc/doc/ModelFrames.scala
+++ b/src/compiler/scala/tools/nsc/doc/ModelFrames.scala
@@ -68,6 +68,8 @@ trait ModelFrames extends ModelExtractor {
ct.toString
}
def save(nodes: NodeSeq) = {
+ val path = this.path
+ if (path.startsWith("http://")) throw new Error("frame: " + this)
val path0 = outdir + File.separator + path + FILE_EXTENSION_HTML
//if (settings.debug.value) inform("Writing XML nodes to " + path0)
val file = new File(path0)