Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This compliant solution removes the call to the overridable method. When removing such calls is infeasible, ensure that declare the method is declared private or final.

Code Block
bgColor#ccccff
private void readObject(final ObjectInputStream stream)
                        throws IOException, ClassNotFoundException {
  stream.defaultReadObject();
}

...

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="a7b3890b2e77694b-0cd69639-4f1745cd-8284b374-bf799220ee6a23944e3a00e1"><ac:plain-text-body><![CDATA[

[[API 2006

AA. Bibliography#API 06]]

 

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="c8cf3db367aa9eb9-650c5578-4a834154-8d4dac8f-af041541ef2931cf353e2c1d"><ac:plain-text-body><![CDATA[

[[Bloch 2008

AA. Bibliography#Bloch 08]]

Item 17. Design and document for inheritance or else prohibit it

]]></ac:plain-text-body></ac:structured-macro>

...