Skip to content

Commit 007eb4d

Browse files
committed
Remove unnecessary print
1 parent f7adc82 commit 007eb4d

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/main/java/com/profiq/codexor/GenerateDocumentationAction.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,6 @@ public void run(@NotNull ProgressIndicator indicator) {
112112
}
113113

114114
private static HttpRequest buildRequest(String apiKey, String model, String prompt, String code) {
115-
System.out.println(prompt);
116-
117115
var messages = new Message[]{new Message("user", prompt + "```" + code + "```")};
118116
var requestBody = new Request(model, messages, 0);
119117
var requestJson = new Gson().toJson(requestBody);

0 commit comments

Comments
 (0)