-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
🚨This issue needs some love.This issue needs some love.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.type: processA process-related concern. May include testing, release, or the like.A process-related concern. May include testing, release, or the like.
Description
-
Method signature with @nullable does not work.
Fix:
At this line in add_snippets_to_file.py#L99, replace the existing:
',\s+'.join(['(final\s+)?{}\s+{}'.format(
with this:
',\s+'.join(['(@nullable\s+)?(final\s+)?{}\s+{}'.format( -
for all single line comments, the script either fails (when its the last method in the file) or appends javadocs to the successive method.
example:
/** some javadoc */
public String method ( String args );
Metadata
Metadata
Assignees
Labels
🚨This issue needs some love.This issue needs some love.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.type: processA process-related concern. May include testing, release, or the like.A process-related concern. May include testing, release, or the like.