Made the general util method public.

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1743 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
egeay 2007-09-11 15:40:31 +00:00
parent 44d92505c6
commit 55049dad72
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class AstJavaSlicer extends Slicer {
* @param ss
* a collection of statements of interest
*/
protected static Collection<Statement> computeSlice(SDG sdg, Collection<Statement> ss, CallGraph cg, PointerAnalysis pa,
public static Collection<Statement> computeSlice(SDG sdg, Collection<Statement> ss, CallGraph cg, PointerAnalysis pa,
DataDependenceOptions dOptions, ControlDependenceOptions cOptions, boolean backward) {
return computeSlice(sdg, ss, cg, pa, new AstJavaModRef(), dOptions, cOptions, backward);
}