A DESCRIPTION OF THE PROBLEM :
The "Serialization Filtering" guide (https://docs.oracle.com/en/java/javase/12/core/serialization-filtering1.html) contains some typos / mistakes. The following quoted text pieces are how they appear within the guide, simply search for them using the search feature of your browser (Ctrl + F).
"Do not deserialized untrusted data."
Problem: "deserialized" -> "deserialize"
"the setObjectInputFiltermethod"
Problem: Missing space before "method"
"In the following example, the process-wide filter is set by using an instance of a class."
Problem: The following example actually uses a method reference instead of an instance of a class.
The "Serialization Filtering" guide (https://docs.oracle.com/en/java/javase/12/core/serialization-filtering1.html) contains some typos / mistakes. The following quoted text pieces are how they appear within the guide, simply search for them using the search feature of your browser (Ctrl + F).
"Do not deserialized untrusted data."
Problem: "deserialized" -> "deserialize"
"the setObjectInputFiltermethod"
Problem: Missing space before "method"
"In the following example, the process-wide filter is set by using an instance of a class."
Problem: The following example actually uses a method reference instead of an instance of a class.