Skip to content

Commit e311d96

Browse files
committed
Fix issue #79
Signed-off-by: Rahul Krishna <[email protected]>
1 parent 7b7a451 commit e311d96

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.6
1+
version=1.0.7

src/main/java/com/ibm/cldk/CodeAnalyzer.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
import com.ibm.cldk.entities.JavaCompilationUnit;
2020
import com.ibm.cldk.utils.BuildProject;
2121
import com.ibm.cldk.utils.Log;
22-
import com.ibm.wala.ipa.callgraph.CallGraphBuilderCancelException;
23-
import com.ibm.wala.ipa.cha.ClassHierarchyException;
2422
import org.apache.commons.lang3.tuple.Pair;
2523
import picocli.CommandLine;
2624
import picocli.CommandLine.Command;
@@ -40,7 +38,7 @@
4038

4139

4240
class VersionProvider implements CommandLine.IVersionProvider {
43-
public String[] getVersion() throws Exception {
41+
public String[] getVersion() {
4442
String version = getClass().getPackage().getImplementationVersion();
4543
return new String[]{ version != null ? version : "unknown" };
4644
}

0 commit comments

Comments
 (0)