From f8dbf0dff457ef6aa25baca6534743e205ffdb93 Mon Sep 17 00:00:00 2001 From: Jerry Date: Mon, 17 Jan 2022 16:08:19 -0800 Subject: [PATCH] changed exception to exlcusion --- .../wala/examples/analysisscope/AnalysisScopeExample.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/ibm/wala/examples/analysisscope/AnalysisScopeExample.java b/src/main/java/com/ibm/wala/examples/analysisscope/AnalysisScopeExample.java index 7b5b234..d87d525 100644 --- a/src/main/java/com/ibm/wala/examples/analysisscope/AnalysisScopeExample.java +++ b/src/main/java/com/ibm/wala/examples/analysisscope/AnalysisScopeExample.java @@ -29,12 +29,12 @@ AnalysisScope makeAnalysisScope(String classPath) throws IOException { /** * * @param scopeFilePath Location of a scope file in string form - * @param exceptionFilePath location of an exception file + * @param exclusionFilePath location of an exception file * @return return an analysis scope object * @throws IOException */ - AnalysisScope makeAnalysisScope(String scopeFilePath, String exceptionFilePath) throws IOException{ - File exception = new File(exceptionFilePath); + AnalysisScope makeAnalysisScope(String scopeFilePath, String exclusionFilePath) throws IOException{ + File exception = new File(exclusionFilePath); return AnalysisScopeReader.readJavaScope(scopeFilePath, exception, AnalysisScopeExample.class.getClassLoader()); } }