Skip to content

Commit ae95231

Browse files
ethanyhouCopilot
andcommitted
fix: format REFRESH_JOB_FAMILY string and update TODO comment for clarity
Co-authored-by: Copilot <copilot@github.com>
1 parent 43a20ab commit ae95231

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

com.microsoft.copilot.eclipse.ui/src/com/microsoft/copilot/eclipse/ui/chat/services/ChatCompletionService.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public class ChatCompletionService implements CopilotAuthStatusListener {
5252
private volatile Set<String> allCommands = Set.of();
5353
// Exclude intelliJ sepcific slash commands
5454
private static final Set<String> EXCLUDED_COMMANDS = Set.of("help", "feedback");
55-
public static final String REFRESH_JOB_FAMILY = "com.microsoft.copilot.eclipse.chat.services.SlashCommandService.refreshJob";
55+
public static final String REFRESH_JOB_FAMILY =
56+
"com.microsoft.copilot.eclipse.chat.services.SlashCommandService.refreshJob";
5657
private CopilotLanguageServerConnection lsConnection;
5758
private AuthStatusManager authStatusManager;
5859
private IResourceChangeListener skillFileListener;
@@ -262,9 +263,9 @@ public void dispose() {
262263
/**
263264
* Listens for workspace resource changes involving SKILL.md or .prompt.md files and triggers a template refresh when
264265
* such files are added, removed, or changed.
265-
*
266-
* TODO: Remove this listener once workspace-root is removed from workspaceFolders in CopilotLanguageClient as CLS can
267-
* watch the project prompt file change directly.
266+
*
267+
* <p>TODO: Remove this listener once workspace-root is removed from workspaceFolders in CopilotLanguageClient as CLS
268+
* can watch the project prompt file change directly.
268269
*/
269270
private class SkillFileChangeListener implements IResourceChangeListener {
270271
@Override

0 commit comments

Comments
 (0)