diff options
author | James Moger <james.moger@gitblit.com> | 2014-03-06 18:02:42 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-03-06 18:02:42 -0500 |
commit | 63fbcc2b3b9c83f41298ee2822e98b0de418e013 (patch) | |
tree | 8c1d2e373e5223117d58b6339b5a5ea97550539f /src/main/java/com/gitblit/tickets/RedisTicketService.java | |
parent | 8d11fa04838c850aaa92895805d39d0a2845300c (diff) | |
download | gitblit-63fbcc2b3b9c83f41298ee2822e98b0de418e013.tar.gz gitblit-63fbcc2b3b9c83f41298ee2822e98b0de418e013.zip |
Do not use @Inject on the ticket service constructors
Diffstat (limited to 'src/main/java/com/gitblit/tickets/RedisTicketService.java')
-rw-r--r-- | src/main/java/com/gitblit/tickets/RedisTicketService.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main/java/com/gitblit/tickets/RedisTicketService.java b/src/main/java/com/gitblit/tickets/RedisTicketService.java index 5653f698..bc639da7 100644 --- a/src/main/java/com/gitblit/tickets/RedisTicketService.java +++ b/src/main/java/com/gitblit/tickets/RedisTicketService.java @@ -21,8 +21,6 @@ import java.util.Collections; import java.util.List; import java.util.Set; -import javax.inject.Inject; - import org.apache.commons.pool2.impl.GenericObjectPoolConfig; import redis.clients.jedis.Client; @@ -61,7 +59,6 @@ public class RedisTicketService extends ITicketService { journal, ticket, counter } - @Inject public RedisTicketService( IRuntimeManager runtimeManager, INotificationManager notificationManager, |