Skip to content

Commit f45a08d

Browse files
committed
Remove BaseDefaultCodecs#synchronossMultipartPresent
Closes gh-34459
1 parent d62ce29 commit f45a08d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

spring-web/src/main/java/org/springframework/http/codec/support/BaseDefaultCodecs.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2025 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.
@@ -93,8 +93,6 @@ class BaseDefaultCodecs implements CodecConfigurer.DefaultCodecs, CodecConfigure
9393

9494
private static final boolean protobufPresent;
9595

96-
static final boolean synchronossMultipartPresent;
97-
9896
static final boolean nettyByteBufPresent;
9997

10098
static final boolean netty5BufferPresent;
@@ -112,7 +110,6 @@ class BaseDefaultCodecs implements CodecConfigurer.DefaultCodecs, CodecConfigure
112110
jackson2SmilePresent = ClassUtils.isPresent("com.fasterxml.jackson.dataformat.smile.SmileFactory", classLoader);
113111
jaxb2Present = ClassUtils.isPresent("jakarta.xml.bind.Binder", classLoader);
114112
protobufPresent = ClassUtils.isPresent("com.google.protobuf.Message", classLoader);
115-
synchronossMultipartPresent = ClassUtils.isPresent("org.synchronoss.cloud.nio.multipart.NioMultipartParser", classLoader);
116113
nettyByteBufPresent = ClassUtils.isPresent("io.netty.buffer.ByteBuf", classLoader);
117114
netty5BufferPresent = ClassUtils.isPresent("io.netty5.buffer.Buffer", classLoader);
118115
kotlinSerializationCborPresent = ClassUtils.isPresent("kotlinx.serialization.cbor.Cbor", classLoader);

0 commit comments

Comments
 (0)