improve handler initialisation

This commit is contained in:
Sebastian Sdorra
2010-11-18 20:59:45 +01:00
parent 44bfb83c62
commit 62bb5a7630
4 changed files with 70 additions and 9 deletions

View File

@@ -112,8 +112,14 @@ public class GitRepositoryHandler
return GitConfig.class;
}
@Override
protected GitConfig createInitialConfig()
{
return new GitConfig();
}
//~--- fields ---------------------------------------------------------------
/** Field description */
private FileRepositoryBuilder builder = new FileRepositoryBuilder();
}