Skip to content

Commit 07a3e30

Browse files
committed
Fixing Style Errors spring-projects#96
1 parent 56c5329 commit 07a3e30

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

src/main/java/org/springframework/session/data/mongo/config/annotation/web/http/SpringSessionMongoOperations.java

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
package org.springframework.session.data.mongo.config.annotation.web.http;
2-
3-
import org.springframework.beans.factory.annotation.Qualifier;
4-
5-
import java.lang.annotation.*;
6-
71
/*
82
* Copyright 2019 the original author or authors.
93
*
@@ -20,6 +14,17 @@
2014
* limitations under the License.
2115
*/
2216

17+
package org.springframework.session.data.mongo.config.annotation.web.http;
18+
19+
import java.lang.annotation.Documented;
20+
import java.lang.annotation.ElementType;
21+
import java.lang.annotation.Retention;
22+
import java.lang.annotation.RetentionPolicy;
23+
import java.lang.annotation.Target;
24+
25+
import org.springframework.beans.factory.annotation.Qualifier;
26+
27+
2328
/**
2429
* Qualifier annotation for a {@link org.springframework.data.mongodb.core.MongoOperations} to be injected in
2530
* {@link org.springframework.session.data.mongo.MongoOperationsSessionRepository}.
@@ -35,4 +40,4 @@
3540
@Qualifier
3641
public @interface SpringSessionMongoOperations {
3742

38-
}
43+
}

0 commit comments

Comments
 (0)