Update for latest 2.8 nightly

git-svn-id: https://simple-build-tool.googlecode.com/svn/trunk@971 d89573ee-9141-11dd-94d4-bdf5e562f29c
This commit is contained in:
dmharrah 2009-08-29 20:38:08 +00:00
parent fb46177226
commit e56df17a04
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ private[sbt] object Parser
}
}
}
private def array[T](size: Int)(f: => T) = Array.fromFunction(i => f)(size)
private def array[T](size: Int)(f: => T)(implicit mf: scala.reflect.Manifest[T]) = Array.fromFunction(i => f)(size)
private def parseConstantPool(in: DataInputStream) =
{
val constantPoolSize = in.readUnsignedShort()