Skip to content

Commit

Permalink
Merge pull request #81 from IBM/1.0.7
Browse files Browse the repository at this point in the history
Fix issue #79
  • Loading branch information
rahlk authored Dec 3, 2024
2 parents b32343b + 42caced commit cb285fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
version=1.0.7-dev

version=1.0.7
4 changes: 1 addition & 3 deletions src/main/java/com/ibm/cldk/CodeAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
import com.ibm.cldk.entities.JavaCompilationUnit;
import com.ibm.cldk.utils.BuildProject;
import com.ibm.cldk.utils.Log;
import com.ibm.wala.ipa.callgraph.CallGraphBuilderCancelException;
import com.ibm.wala.ipa.cha.ClassHierarchyException;
import org.apache.commons.lang3.tuple.Pair;
import picocli.CommandLine;
import picocli.CommandLine.Command;
Expand All @@ -40,7 +38,7 @@


class VersionProvider implements CommandLine.IVersionProvider {
public String[] getVersion() throws Exception {
public String[] getVersion() {
String version = getClass().getPackage().getImplementationVersion();
return new String[]{ version != null ? version : "unknown" };
}
Expand Down

0 comments on commit cb285fa

Please sign in to comment.