Skip to content

Commit 19f81ad

Browse files
Rangeet PanRangeet Pan
authored andcommitted
removing the line that was causing the issue
1 parent 035d8fe commit 19f81ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cldk/analysis/java/codeanalyzer/codeanalyzer.py

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

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

0 commit comments

Comments
 (0)