Remove "@return" for void-returning functions

This commit is contained in:
Ben Liblit 2017-03-22 20:17:33 -05:00
parent 3b88d7be39
commit b012b21147
4 changed files with 0 additions and 8 deletions

View File

@ -1722,7 +1722,6 @@ public abstract class CAstVisitor<C extends CAstVisitor.Context> {
* Visit an InstanceOf node.
* @param n the node to process
* @param c a visitor-specific context
* @return true if no further processing is needed
*/
protected void leaveAssert(CAstNode n, C c, CAstVisitor<C> visitor) { visitor.leaveNode(n, c, visitor); }
protected boolean visitAssert(CAstNode n, C c, CAstVisitor<C> visitor) { return visitor.visitNode(n, c, visitor); }

View File

@ -343,9 +343,6 @@ public class FlatInstantiator implements IInstantiator {
return instance;
}
/**
* @return an unallocated SSAVariable
*/
private void createPrimitive(SSAValue instance) {
// XXX; something else?
instance.setAssigned();

View File

@ -344,9 +344,6 @@ public class Instantiator implements IInstantiator {
return instance;
}
/**
* @return an unallocated SSAVariable
*/
private void createPrimitive(SSAValue instance) {
// XXX; something else?
instance.setAssigned();

View File

@ -175,7 +175,6 @@ public class XMLSummaryWriter {
* No guarantees as to the state of the Document if an exception is thrown.
*
* @param summary
* @return
* @throws DOMException
* @throws UTFDataFormatException
* @throws SSASerializationException