Skip to content

Commit

Permalink
Extracted method OpenStringReader() in class TestingUnicodeFileToHtml…
Browse files Browse the repository at this point in the history
…TextConverter.
  • Loading branch information
wubin28 committed Apr 17, 2014
1 parent 25a13e5 commit e9efd04
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -9,6 +9,11 @@ public TestingUnicodeFileToHtmlTextConverter(string strToBeConverted) : base (st
}

protected override TextReader OpenTextReader()
{
return OpenStringReader();
}

private StringReader OpenStringReader()
{
return new StringReader(FullFilenameWithPath);
}
Expand Down

0 comments on commit e9efd04

Please sign in to comment.