mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-09 11:01:22 +00:00
https://github.com/carlrobertoh/CodeGPT/issues/619
This commit is contained in:
parent
e06221bd1b
commit
671d9caa07
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ public class CustomServiceFormTabbedPane extends JBTabbedPane {
|
|||
public Map<String, String> getHeaders() {
|
||||
return getTableData(headersTable).entrySet().stream()
|
||||
.filter(entry -> entry.getKey() != null && entry.getValue() != null)
|
||||
.collect(toMap(Entry::getKey, entry -> (String) entry.getValue()));
|
||||
.collect(toMap(Entry::getKey, entry -> String.valueOf(entry.getValue())));
|
||||
}
|
||||
|
||||
public void setBody(Map<String, Object> body) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue