Skip to content

Commit 77618eb

Browse files
authored
Merge pull request #110 from codellm-devkit/issue-109-recursion-error
removing the line that was causing the issue
2 parents bf44358 + 19f81ad commit 77618eb

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)