tweak comments

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3030 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2008-09-04 20:13:06 +00:00
parent f87e7228c0
commit 1f3fe79f3b
2 changed files with 0 additions and 14 deletions

View File

@ -18,7 +18,6 @@ import com.ibm.wala.util.debug.Assertions;
/**
* @author Julian Dolby (dolby@us.ibm.com)
*
*/
public abstract class SSAAbstractInvokeInstruction extends SSAInstruction implements IInvokeInstruction {

View File

@ -16,11 +16,7 @@ import com.ibm.wala.shrikeBT.IInstruction;
import com.ibm.wala.types.TypeReference;
/**
*
* An instruction in SSA form.
*
* @author sfink
* @author roca (visitor pattern copied from Shrike)
*/
public abstract class SSAInstruction implements IInstruction {
@ -219,19 +215,11 @@ public abstract class SSAInstruction implements IInstruction {
return 0;
}
/**
* Method getNumberOfUses.
*
* @return int
*/
public int getNumberOfUses() {
return 0;
}
/**
* Method getUse.
*
* @param j
* @return value number representing the jth use in this instruction. -1 means TOP (i.e., the value doesn't matter)
*/
public int getUse(int j) throws UnsupportedOperationException {
@ -252,7 +240,6 @@ public abstract class SSAInstruction implements IInstruction {
* This method should never return null.
*
* @return the set of exception types that an instruction might throw ... disregarding athrows and invokes.
*
*/
abstract public Collection<TypeReference> getExceptionTypes();