Skip to content

Commit 7b57ed7

Browse files
Rangeet Panrahlk
authored andcommitted
removing the line that was causing the issue
1 parent 2d76a79 commit 7b57ed7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cldk/analysis/java/codeanalyzer/codeanalyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ def __raw_call_graph_using_symbol_table(self, qualified_class_name: str, method_
827827
)
828828
if call_edge not in cg:
829829
cg.append(call_edge)
830-
cg = self.__raw_call_graph_using_symbol_table(qualified_class_name=target_class, method_signature=target_method_details.signature, cg=cg)
830+
# cg = self.__raw_call_graph_using_symbol_table(qualified_class_name=target_class, method_signature=target_method_details.signature, cg=cg)
831831
return cg
832832

833833
def get_class_call_graph(self, qualified_class_name: str, method_name: str | None = None) -> List[Tuple[JMethodDetail, JMethodDetail]]:

0 commit comments

Comments
 (0)