Make FileRepository(File) constructor public again, it is used from the helma.main and helma.servlet packages.

This commit is contained in:
hns 2005-06-02 19:04:13 +00:00
parent 43b1b5edd8
commit a8b9ffd154

View file

@ -51,7 +51,7 @@ public class FileRepository extends AbstractRepository {
* repository
* @param dir directory
*/
protected FileRepository(File dir) {
public FileRepository(File dir) {
this(dir, null);
}