made class package local again

This commit is contained in:
Lars Kühne 2002-11-03 09:53:29 +00:00
parent 1aa2134399
commit bf1b83ee6f
1 changed files with 2 additions and 6 deletions

View File

@ -27,12 +27,8 @@ import java.io.IOException;
*
* @author <a href="mailto:lkuehne@users.sourceforge.net">Lars Kühne</a>
*/
public class StringArrayReader extends Reader
class StringArrayReader extends Reader
{
// TODO: Make this class and it's constructor package local again
// when parsing is done in a central place
// (currently it's done in the c.p.t.checkstyle and c.p.t.c.gui)
/** the underlying String array */
private final String[] mUnderlyingArray;
@ -53,7 +49,7 @@ public class StringArrayReader extends Reader
*
* @param aUnderlyingArray the underlying String array.
*/
public StringArrayReader(String[] aUnderlyingArray)
StringArrayReader(String[] aUnderlyingArray)
{
final int length = aUnderlyingArray.length;
mUnderlyingArray = new String[length];