From 41cee5c4e6ac5b83b9ace42374fb34eea79919ed Mon Sep 17 00:00:00 2001 From: sjfink Date: Fri, 25 Jan 2008 19:02:01 +0000 Subject: [PATCH] nuke unnecessary WalaException git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2481 f5eafffb-2e1d-0410-98e4-8ec43c5233c4 --- .../src/com/ibm/wala/util/graph/InferGraphRoots.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/com.ibm.wala.core/src/com/ibm/wala/util/graph/InferGraphRoots.java b/com.ibm.wala.core/src/com/ibm/wala/util/graph/InferGraphRoots.java index 3510793e3..f2e6c7509 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/util/graph/InferGraphRoots.java +++ b/com.ibm.wala.core/src/com/ibm/wala/util/graph/InferGraphRoots.java @@ -15,14 +15,13 @@ import java.util.HashSet; import java.util.Iterator; import com.ibm.wala.util.collections.HashSetFactory; -import com.ibm.wala.util.warnings.WalaException; /** * TODO: Move this somewhere. */ public class InferGraphRoots { - public static Collection inferRoots(Graph g) throws WalaException { + public static Collection inferRoots(Graph g){ if (g == null) { throw new IllegalArgumentException("g is null"); }