]> source.dussan.org Git - gitblit.git/commitdiff
Remove @Inject annotation
authorJames Moger <james.moger@gitblit.com>
Fri, 18 Apr 2014 02:44:28 +0000 (22:44 -0400)
committerJames Moger <james.moger@gitblit.com>
Fri, 18 Apr 2014 03:07:33 +0000 (23:07 -0400)
src/main/java/com/gitblit/utils/IdGenerator.java

index d2c1cb230628368a5c9f591adc3cdd5a6b285410..b14a6378f6ca6d63efa184ab5e976e72360e2b8c 100644 (file)
@@ -17,8 +17,6 @@ package com.gitblit.utils;
 import java.util.Random;
 import java.util.concurrent.atomic.AtomicInteger;
 
-import javax.inject.Inject;
-
 /** Simple class to produce 4 billion keys randomly distributed. */
 public class IdGenerator {
   /** Format an id created by this class as a hex string. */
@@ -34,7 +32,6 @@ public class IdGenerator {
 
   private final AtomicInteger gen;
 
-  @Inject
   public IdGenerator() {
     gen = new AtomicInteger(new Random().nextInt());
   }