Fix #365 - Don't label methods as unable to return null when they can

This commit is contained in:
James Agnew 2016-06-08 14:48:55 -07:00
parent 364094d540
commit 4a7328231e
2 changed files with 6 additions and 1 deletions

View File

@ -92,7 +92,7 @@
/**
* Gets the value(s) for <b>${child.elementName}</b> ($esc.html(${child.shortName})).
* creating it if it does
* not exist. Will not return <code>null</code>.
* not exist. This method may return <code>null</code>.
*
* <p>
* <b>Definition:</b>

View File

@ -299,6 +299,11 @@
certain codes, which caused false failures when validating
resources. Thanks to GitHub user @Xoude for reporting!
</action>
<action type="fix" issue="365">
Some methods on DSTU2 model structures have JavaDocs that
incorrectly claim that the method will not return null when
in fact it can. Thanks to Rick Riemer for reporting!
</action>
</release>
<release version="1.5" date="2016-04-20">
<action type="fix" issue="339">