Rename ProjectService to RepositoryService.

This commit is contained in:
takezoe
2013-06-04 01:14:27 +09:00
parent f9c085ced6
commit 78ad794613
7 changed files with 21 additions and 18 deletions

View File

@@ -11,12 +11,14 @@ import org.eclipse.jgit.lib._
import org.apache.commons.io.FileUtils
import org.eclipse.jgit.treewalk._
class RepositoryViewerController extends RepositoryViewerControllerBase with ProjectService with AccountService
class RepositoryViewerController extends RepositoryViewerControllerBase
with RepositoryService with AccountService
/**
* The repository viewer.
*/
trait RepositoryViewerControllerBase extends ControllerBase { self: ProjectService with AccountService =>
trait RepositoryViewerControllerBase extends ControllerBase {
self: RepositoryService with AccountService =>
// TODO separate to AccountController?
/**