type parameters for IRFactory

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1710 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-09-01 14:41:18 +00:00
parent c0ee8e04b3
commit a2194053d6
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ public class AstIRFactory implements IRFactory {
return newIR;
}
public static IRFactory makeDefaultFactory(final boolean keepAstIRs) {
public static IRFactory<IMethod> makeDefaultFactory(final boolean keepAstIRs) {
return new DefaultIRFactory() {
private final AstIRFactory astFactory = new AstIRFactory(keepAstIRs);