summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/git/GitblitReceivePack.java
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2013-11-25 01:31:53 -0500
committerJames Moger <james.moger@gitblit.com>2013-11-29 11:05:51 -0500
commit3a9e76b63f09a32e0b6812e18ffff00fab8e58e6 (patch)
treefe5a3f320845d1610500bbc28e7228868b8ce0ab /src/main/java/com/gitblit/git/GitblitReceivePack.java
parentc5069a16da0a78d349b9c86b9d66dd4799257476 (diff)
downloadgitblit-3a9e76b63f09a32e0b6812e18ffff00fab8e58e6.tar.gz
gitblit-3a9e76b63f09a32e0b6812e18ffff00fab8e58e6.zip
Flattened IGitblitManager, GitblitManager, and GitBlit classes
Change-Id: Id6deb27306e0034898673bf5d5d76a4ed012ced6
Diffstat (limited to 'src/main/java/com/gitblit/git/GitblitReceivePack.java')
-rw-r--r--src/main/java/com/gitblit/git/GitblitReceivePack.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/gitblit/git/GitblitReceivePack.java b/src/main/java/com/gitblit/git/GitblitReceivePack.java
index ebea2658..e5c0ea45 100644
--- a/src/main/java/com/gitblit/git/GitblitReceivePack.java
+++ b/src/main/java/com/gitblit/git/GitblitReceivePack.java
@@ -44,10 +44,10 @@ import org.slf4j.LoggerFactory;
import com.gitblit.Constants;
import com.gitblit.Constants.AccessRestrictionType;
-import com.gitblit.GitBlit;
import com.gitblit.IStoredSettings;
import com.gitblit.Keys;
import com.gitblit.client.Translation;
+import com.gitblit.manager.IGitblit;
import com.gitblit.models.RepositoryModel;
import com.gitblit.models.UserModel;
import com.gitblit.utils.ArrayUtils;
@@ -91,10 +91,10 @@ public class GitblitReceivePack extends ReceivePack implements PreReceiveHook, P
private final IStoredSettings settings;
- private final GitBlit gitblit;
+ private final IGitblit gitblit;
public GitblitReceivePack(
- GitBlit gitblit,
+ IGitblit gitblit,
Repository db,
RepositoryModel repository,
UserModel user) {