Commit e59c0e8695622b4fb9b62343df3ac0fd5f3444cd
1 parent
37a4099c
Exists in
master
Ajustes nos imports.
Showing
4 changed files
with
1 additions
and
8 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/ShutdownBootstrap.java
... | ... | @@ -54,8 +54,8 @@ import javax.enterprise.inject.spi.ProcessAnnotatedType; |
54 | 54 | |
55 | 55 | import br.gov.frameworkdemoiselle.annotation.Shutdown; |
56 | 56 | import br.gov.frameworkdemoiselle.annotation.ViewScoped; |
57 | -import br.gov.frameworkdemoiselle.internal.context.ThreadLocalContext; | |
58 | 57 | import br.gov.frameworkdemoiselle.internal.context.CustomContext; |
58 | +import br.gov.frameworkdemoiselle.internal.context.ThreadLocalContext; | |
59 | 59 | import br.gov.frameworkdemoiselle.internal.processor.ShutdownProcessor; |
60 | 60 | |
61 | 61 | /** | ... | ... |
impl/core/src/test/java/br/gov/frameworkdemoiselle/internal/configuration/ConfigurationLoaderTest.java
... | ... | @@ -37,17 +37,14 @@ |
37 | 37 | package br.gov.frameworkdemoiselle.internal.configuration; |
38 | 38 | |
39 | 39 | import static org.easymock.EasyMock.expect; |
40 | -import static org.easymock.EasyMock.replay; | |
41 | 40 | import static org.junit.Assert.assertEquals; |
42 | 41 | import static org.junit.Assert.assertNull; |
43 | 42 | import static org.junit.Assert.assertTrue; |
44 | 43 | import static org.junit.Assert.fail; |
45 | 44 | import static org.powermock.api.easymock.PowerMock.mockStatic; |
46 | -import static org.powermock.api.easymock.PowerMock.replayAll; | |
47 | 45 | |
48 | 46 | import javax.validation.constraints.NotNull; |
49 | 47 | |
50 | -import org.easymock.EasyMock; | |
51 | 48 | import org.junit.After; |
52 | 49 | import org.junit.Before; |
53 | 50 | import org.junit.Test; | ... | ... |
impl/extension/jsf/src/main/java/br/gov/frameworkdemoiselle/annotation/NextView.java
... | ... | @@ -47,8 +47,6 @@ import java.lang.annotation.Inherited; |
47 | 47 | import java.lang.annotation.Retention; |
48 | 48 | import java.lang.annotation.Target; |
49 | 49 | |
50 | -import javax.inject.Qualifier; | |
51 | - | |
52 | 50 | |
53 | 51 | // TODO Este qualifier é realmente necessário? Verificar também na anotação PreviousView. |
54 | 52 | @Inherited | ... | ... |
impl/extension/jsf/src/main/java/br/gov/frameworkdemoiselle/annotation/PreviousView.java