Skip to content

Commit

Permalink
[JBVFS-165]; remove getCharacterReader impl.
Browse files Browse the repository at this point in the history
  • Loading branch information
alesj committed Sep 16, 2010
1 parent f8c3bbe commit 8386795
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/main/java/org/jboss/virtual/VFSInputSource.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
package org.jboss.virtual;

import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;

import org.jboss.virtual.plugins.vfs.helpers.LazyInputStream;

Expand Down Expand Up @@ -64,12 +62,6 @@ public InputStream getByteStream() {
return new LazyInputStream(file);
}

@Override
public Reader getCharacterStream()
{
return new InputStreamReader(getByteStream());
}

@Override
public String toString()
{
Expand Down

0 comments on commit 8386795

Please sign in to comment.