Skip to content

Commit b0d115e

Browse files
authored
Fix since in the deprecated ctor
Signed-off-by: Artem Bilan <[email protected]>
1 parent 9649673 commit b0d115e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-integration-core/src/main/java/org/springframework/integration/codec/CompositeCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public CompositeCodec(Map<Class<?>, Codec> delegates, Codec defaultCodec) {
4343
this.delegates = new HashMap<Class<?>, Codec>(delegates);
4444
}
4545

46-
@Deprecated(since = "6.4", forRemoval = true)
46+
@Deprecated(since = "6.4.6", forRemoval = true)
4747
public CompositeCodec(Codec defaultCodec) {
4848
this.defaultCodec = defaultCodec;
4949
this.delegates = Map.of();

0 commit comments

Comments
 (0)