mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Returned public CodeReader( String filename, InputStream stream ) signature.
This commit is contained in:
parent
d0d534d01f
commit
f599a0998b
1 changed files with 6 additions and 0 deletions
|
@ -67,6 +67,12 @@ public class CodeReader {
|
|||
stream.close();
|
||||
}
|
||||
}
|
||||
|
||||
public CodeReader( String filename, InputStream stream ) throws IOException
|
||||
{
|
||||
this( filename, SYSTEM_DEFAULT_ENCODING, stream );
|
||||
}
|
||||
|
||||
public CodeReader( String fileName, String charSet, InputStream stream ) throws IOException {
|
||||
filename = fileName.toCharArray();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue