Fix #365 - Don't label methods as unable to return null when they can
This commit is contained in:
parent
364094d540
commit
4a7328231e
|
@ -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>
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Reference in New Issue