summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/io/Jar.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-11-13 08:22:25 -0800
committerPaul Phillips <paulp@improving.org>2012-11-19 11:55:07 -0800
commitd09bb9c6377de4664da9a0a7067f94644ba841d5 (patch)
tree5c007c070df39ce649bf3b7d2f2fc685c37e50cf /src/compiler/scala/tools/nsc/io/Jar.scala
parentf89394ee3b3f95d982382d6ee2c2b74af0c02113 (diff)
downloadscala-d09bb9c6377de4664da9a0a7067f94644ba841d5.tar.gz
scala-d09bb9c6377de4664da9a0a7067f94644ba841d5.tar.bz2
scala-d09bb9c6377de4664da9a0a7067f94644ba841d5.zip
Some files removed in their entirety.
And small associated changes.
Diffstat (limited to 'src/compiler/scala/tools/nsc/io/Jar.scala')
-rw-r--r--src/compiler/scala/tools/nsc/io/Jar.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/compiler/scala/tools/nsc/io/Jar.scala b/src/compiler/scala/tools/nsc/io/Jar.scala
index ef2c9b13c0..3a9a878bc2 100644
--- a/src/compiler/scala/tools/nsc/io/Jar.scala
+++ b/src/compiler/scala/tools/nsc/io/Jar.scala
@@ -63,12 +63,6 @@ class Jar(file: File) extends Iterable[JarEntry] {
Iterator continually in.getNextJarEntry() takeWhile (_ != null) foreach f
}
override def iterator: Iterator[JarEntry] = this.toList.iterator
- def fileishIterator: Iterator[Fileish] = jarFile.entries.asScala map (x => Fileish(x, () => getEntryStream(x)))
-
- private def getEntryStream(entry: JarEntry) = jarFile getInputStream entry match {
- case null => errorFn("No such entry: " + entry) ; null
- case x => x
- }
override def toString = "" + file
}