Commit ab7d964f7b3348905dc2ffdaa7dd8afb1de2df52
1 parent
ee348c18
Exists in
master
Remoção de import desnecessário
Showing
2 changed files
with
1 additions
and
6 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/configuration/Configuration.java
... | ... | @@ -43,11 +43,8 @@ import java.lang.annotation.Inherited; |
43 | 43 | import java.lang.annotation.Retention; |
44 | 44 | import java.lang.annotation.Target; |
45 | 45 | |
46 | -import javax.enterprise.context.ApplicationScoped; | |
47 | -import javax.enterprise.context.RequestScoped; | |
48 | 46 | import javax.enterprise.inject.Stereotype; |
49 | 47 | import javax.enterprise.util.Nonbinding; |
50 | -import javax.inject.Singleton; | |
51 | 48 | |
52 | 49 | /** |
53 | 50 | * Identifies a <b>configuration class</b>, that is, a structure reserved to store configuration values retrieved from a |
... | ... | @@ -64,7 +61,7 @@ import javax.inject.Singleton; |
64 | 61 | * |
65 | 62 | * @author SERPRO |
66 | 63 | */ |
67 | -//@Singleton | |
64 | +// @Singleton | |
68 | 65 | @Stereotype |
69 | 66 | @Inherited |
70 | 67 | @Target(TYPE) | ... | ... |
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/producer/ResourceBundleProducer.java
... | ... | @@ -38,13 +38,11 @@ package br.gov.frameworkdemoiselle.internal.producer; |
38 | 38 | |
39 | 39 | import java.io.Serializable; |
40 | 40 | import java.util.Locale; |
41 | -import java.util.MissingResourceException; | |
42 | 41 | |
43 | 42 | import javax.enterprise.inject.Default; |
44 | 43 | import javax.enterprise.inject.Produces; |
45 | 44 | import javax.enterprise.inject.spi.InjectionPoint; |
46 | 45 | |
47 | -import br.gov.frameworkdemoiselle.DemoiselleException; | |
48 | 46 | import br.gov.frameworkdemoiselle.annotation.Name; |
49 | 47 | import br.gov.frameworkdemoiselle.util.Beans; |
50 | 48 | import br.gov.frameworkdemoiselle.util.ResourceBundle; | ... | ... |