We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112781f commit 21e0e27Copy full SHA for 21e0e27
spring-core/src/main/java/org/springframework/core/ResolvableType.java
@@ -16,7 +16,6 @@
16
17
package org.springframework.core;
18
19
-import java.io.ObjectStreamException;
20
import java.io.Serializable;
21
import java.lang.reflect.Array;
22
import java.lang.reflect.Constructor;
@@ -859,7 +858,7 @@ VariableResolver asVariableResolver() {
859
858
/**
860
* Custom serialization support for {@link #NONE}.
861
*/
862
- private Object readResolve() throws ObjectStreamException {
+ private Object readResolve() {
863
return (this.type == null ? NONE : this);
864
}
865
0 commit comments