Remove unused parameters

This commit is contained in:
Adam
2015-06-13 11:01:46 -04:00
parent eb986ba708
commit a677e64aac
106 changed files with 1229 additions and 228 deletions

View File

@@ -47,20 +47,4 @@ public class Exceptions
{
return exceptions;
}
public List<Exception> getHandlersForPc(int pc)
{
List<Exception> matches = new ArrayList<>();
for (Exception e : exceptions)
{
if (pc >= e.getStartPc() && pc < e.getEndPc())
{
/* possible match */
matches.add(e);
}
}
return matches;
}
}