Skip to content

Commit

Permalink
Address issue #196
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanenicolas committed Aug 22, 2017
1 parent abb7ad6 commit 3dfb8f4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import javax.inject.Scope;

import static java.lang.annotation.RetentionPolicy.CLASS;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
* Identifies a type that the injector only instantiates once
Expand All @@ -15,6 +16,6 @@
*/
@Scope
@Documented
@Retention(CLASS)
@Retention(RUNTIME)
public @interface ContextSingleton {
}

0 comments on commit 3dfb8f4

Please sign in to comment.