Skip to content

Commit 559e81b

Browse files
committed
Make SocketUtils a concrete class
Per the Javadoc for the SocketUtils() constructor, SocketUtils can be instantiated as a Spring Bean in XML configuration files; however, SocketUtils is currently abstract which prevents such usage. This commit removes the 'abstract' declaration thereby allowing SocketUtils to be instantiated as a Spring bean. Issue: SPR-12169
1 parent c8bbd0b commit 559e81b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-core/src/main/java/org/springframework/util/SocketUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* @author Gunnar Hillert
3838
* @since 4.0
3939
*/
40-
public abstract class SocketUtils {
40+
public class SocketUtils {
4141

4242
/**
4343
* The default minimum value for port ranges used when finding an available

0 commit comments

Comments
 (0)