mirror of
https://gitee.com/dcren/initializr.git
synced 2026-09-19 06:17:42 +08:00
Fix typo
This commit is contained in:
+2
-2
@@ -48,11 +48,11 @@ class SpringSessionRequestPostProcessor extends AbstractProjectRequestPostProces
|
|||||||
public void postProcessAfterResolution(ProjectRequest request,
|
public void postProcessAfterResolution(ProjectRequest request,
|
||||||
InitializrMetadata metadata) {
|
InitializrMetadata metadata) {
|
||||||
if (isSpringBootVersionAtLeastAfter(request, VERSION_2_0_0_M3)) {
|
if (isSpringBootVersionAtLeastAfter(request, VERSION_2_0_0_M3)) {
|
||||||
swapSpringSessionDepenendency(request);
|
swapSpringSessionDependency(request);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void swapSpringSessionDepenendency(ProjectRequest request) {
|
private void swapSpringSessionDependency(ProjectRequest request) {
|
||||||
Dependency session = getDependency(request, "session");
|
Dependency session = getDependency(request, "session");
|
||||||
if (session != null) {
|
if (session != null) {
|
||||||
List<Dependency> swap = new ArrayList<>();
|
List<Dependency> swap = new ArrayList<>();
|
||||||
|
|||||||
Reference in New Issue
Block a user