Skip to content

Commit e3301dd

Browse files
committed
Merge branch '6.1.x'
2 parents 2b601f9 + 6bd4687 commit e3301dd

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

spring-core/src/main/java/org/springframework/core/convert/support/MapToMapConverter.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,7 +33,7 @@
3333
*
3434
* <p>First, creates a new Map of the requested targetType with a size equal to the
3535
* size of the source Map. Then copies each element in the source map to the target map.
36-
* Will perform a conversion from the source maps's parameterized K,V types to the target
36+
* Will perform a conversion from the source map's parameterized K,V types to the target
3737
* map's parameterized types K,V if necessary.
3838
*
3939
* @author Keith Donald

spring-jdbc/src/main/java/org/springframework/jdbc/core/simple/SimpleJdbcCallOperations.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -49,14 +49,14 @@ public interface SimpleJdbcCallOperations {
4949
SimpleJdbcCallOperations withFunctionName(String functionName);
5050

5151
/**
52-
* Optionally, specify the name of the schema that contins the stored procedure.
52+
* Optionally, specify the name of the schema that contains the stored procedure.
5353
* @param schemaName the name of the schema
5454
* @return the instance of this SimpleJdbcCall
5555
*/
5656
SimpleJdbcCallOperations withSchemaName(String schemaName);
5757

5858
/**
59-
* Optionally, specify the name of the catalog that contins the stored procedure.
59+
* Optionally, specify the name of the catalog that contains the stored procedure.
6060
* <p>To provide consistency with the Oracle DatabaseMetaData, this is used to specify the
6161
* package name if the procedure is declared as part of a package.
6262
* @param catalogName the catalog or package name

spring-messaging/src/main/java/org/springframework/messaging/simp/SimpMessageMappingInfo.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2023 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@
2323
import org.springframework.messaging.handler.MessageCondition;
2424

2525
/**
26-
* {@link MessageCondition} for SImple Messaging Protocols. Encapsulates the following
26+
* {@link MessageCondition} for Simple Messaging Protocols. Encapsulates the following
2727
* request mapping conditions:
2828
* <ol>
2929
* <li>{@link SimpMessageTypeMessageCondition}

spring-messaging/src/main/java/org/springframework/messaging/simp/annotation/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Annotations and for handling messages from SImple Messaging Protocols such as STOMP.
2+
* Annotations and for handling messages from Simple Messaging Protocols such as STOMP.
33
*/
44
@NonNullApi
55
@NonNullFields

spring-web/src/main/java/org/springframework/web/multipart/support/MultipartFilter.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2023 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@
3939
*
4040
* <p>If no MultipartResolver bean is found, this filter falls back to a default
4141
* MultipartResolver: {@link StandardServletMultipartResolver} for Servlet
42-
* oontainers, based on a multipart-config section in {@code web.xml}.
42+
* containers, based on a multipart-config section in {@code web.xml}.
4343
* Note however that at present the Servlet specification only defines how to
4444
* enable multipart configuration on a Servlet and as a result multipart request
4545
* processing is likely not possible in a Filter unless the Servlet container

spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMethodMapping.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,8 @@ protected HandlerMethod handleNoMatch(Set<T> mappings, String lookupPath, HttpSe
479479
@Override
480480
protected boolean hasCorsConfigurationSource(Object handler) {
481481
return super.hasCorsConfigurationSource(handler) ||
482-
(handler instanceof HandlerMethod handerMethod &&
483-
this.mappingRegistry.getCorsConfiguration(handerMethod) != null);
482+
(handler instanceof HandlerMethod handlerMethod &&
483+
this.mappingRegistry.getCorsConfiguration(handlerMethod) != null);
484484
}
485485

486486
@Override

0 commit comments

Comments
 (0)