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,8 +54,8 @@ import javax.enterprise.inject.spi.ProcessAnnotatedType; | ||
54 | 54 | ||
55 | import br.gov.frameworkdemoiselle.annotation.Shutdown; | 55 | import br.gov.frameworkdemoiselle.annotation.Shutdown; |
56 | import br.gov.frameworkdemoiselle.annotation.ViewScoped; | 56 | import br.gov.frameworkdemoiselle.annotation.ViewScoped; |
57 | -import br.gov.frameworkdemoiselle.internal.context.ThreadLocalContext; | ||
58 | import br.gov.frameworkdemoiselle.internal.context.CustomContext; | 57 | import br.gov.frameworkdemoiselle.internal.context.CustomContext; |
58 | +import br.gov.frameworkdemoiselle.internal.context.ThreadLocalContext; | ||
59 | import br.gov.frameworkdemoiselle.internal.processor.ShutdownProcessor; | 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,17 +37,14 @@ | ||
37 | package br.gov.frameworkdemoiselle.internal.configuration; | 37 | package br.gov.frameworkdemoiselle.internal.configuration; |
38 | 38 | ||
39 | import static org.easymock.EasyMock.expect; | 39 | import static org.easymock.EasyMock.expect; |
40 | -import static org.easymock.EasyMock.replay; | ||
41 | import static org.junit.Assert.assertEquals; | 40 | import static org.junit.Assert.assertEquals; |
42 | import static org.junit.Assert.assertNull; | 41 | import static org.junit.Assert.assertNull; |
43 | import static org.junit.Assert.assertTrue; | 42 | import static org.junit.Assert.assertTrue; |
44 | import static org.junit.Assert.fail; | 43 | import static org.junit.Assert.fail; |
45 | import static org.powermock.api.easymock.PowerMock.mockStatic; | 44 | import static org.powermock.api.easymock.PowerMock.mockStatic; |
46 | -import static org.powermock.api.easymock.PowerMock.replayAll; | ||
47 | 45 | ||
48 | import javax.validation.constraints.NotNull; | 46 | import javax.validation.constraints.NotNull; |
49 | 47 | ||
50 | -import org.easymock.EasyMock; | ||
51 | import org.junit.After; | 48 | import org.junit.After; |
52 | import org.junit.Before; | 49 | import org.junit.Before; |
53 | import org.junit.Test; | 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,8 +47,6 @@ import java.lang.annotation.Inherited; | ||
47 | import java.lang.annotation.Retention; | 47 | import java.lang.annotation.Retention; |
48 | import java.lang.annotation.Target; | 48 | import java.lang.annotation.Target; |
49 | 49 | ||
50 | -import javax.inject.Qualifier; | ||
51 | - | ||
52 | 50 | ||
53 | // TODO Este qualifier é realmente necessário? Verificar também na anotação PreviousView. | 51 | // TODO Este qualifier é realmente necessário? Verificar também na anotação PreviousView. |
54 | @Inherited | 52 | @Inherited |
impl/extension/jsf/src/main/java/br/gov/frameworkdemoiselle/annotation/PreviousView.java
@@ -47,8 +47,6 @@ import java.lang.annotation.Inherited; | @@ -47,8 +47,6 @@ import java.lang.annotation.Inherited; | ||
47 | import java.lang.annotation.Retention; | 47 | import java.lang.annotation.Retention; |
48 | import java.lang.annotation.Target; | 48 | import java.lang.annotation.Target; |
49 | 49 | ||
50 | -import javax.inject.Qualifier; | ||
51 | - | ||
52 | @Inherited | 50 | @Inherited |
53 | @Documented | 51 | @Documented |
54 | @Target({ TYPE, FIELD, METHOD, PARAMETER }) | 52 | @Target({ TYPE, FIELD, METHOD, PARAMETER }) |