summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcremet <cremet@epfl.ch>2004-02-18 14:00:28 +0000
committercremet <cremet@epfl.ch>2004-02-18 14:00:28 +0000
commit2d6d5a41e28a7443f0c0ccee1edbe63bf0c18f9b (patch)
treed84d909c3e4bbf8782d823a824be557352ad68bb
parent9810b4372ab58f126b990a2f16cb0be5eef87ee0 (diff)
downloadscala-2d6d5a41e28a7443f0c0ccee1edbe63bf0c18f9b.tar.gz
scala-2d6d5a41e28a7443f0c0ccee1edbe63bf0c18f9b.tar.bz2
scala-2d6d5a41e28a7443f0c0ccee1edbe63bf0c18f9b.zip
*** empty log message ***
-rw-r--r--sources/scala/tools/scaladoc/ScalaSearch.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/sources/scala/tools/scaladoc/ScalaSearch.java b/sources/scala/tools/scaladoc/ScalaSearch.java
index 1f954c5598..de70ccaba0 100644
--- a/sources/scala/tools/scaladoc/ScalaSearch.java
+++ b/sources/scala/tools/scaladoc/ScalaSearch.java
@@ -492,8 +492,7 @@ public class ScalaSearch {
// Rem: we use a dummy extends clause, otherwise the compiler
// complains.
queryCounter = queryCounter + 1;
- InputStream in =
- new BufferedInputStream(new ByteArrayInputStream(unitString.getBytes()));
+ InputStream in = new ByteArrayInputStream(unitString.getBytes());
// new BufferedInputStream(new StringBufferInputStream(unitString));
SourceFile sourceFile = null;
try {