Skip to content

Commit

Permalink
PR review for rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
nquinquenel committed Nov 18, 2024
1 parent 1653b26 commit 31a34c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public ProjectExclusionsPanel(Project project) {
+ "\">override</a> your locally defined exclusions.";
editorPane2.setVisible(false);
} else {
message = "When a project is connected to SonarQube (Server, Cloud), exclusions defined in the server's General Settings " +
message = "When a project is connected to SonarQube (Server, Cloud), exclusions defined in its General Settings " +
"<a href=\"" + SonarLintDocumentation.Intellij.FILE_EXCLUSION_LINK + "\">override</a> your locally defined exclusions.";
editorPane2.setVisible(true);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Notifies about analysis tasks starting. It will be called for any analysis task, regardless of the trigger, if it is background or not, etc.
*/
public interface AnalysisListener {
Topic<AnalysisListener> TOPIC = Topic.create("SonarQube for IntelliJ Analysis Start", AnalysisListener.class);
Topic<AnalysisListener> TOPIC = Topic.create("SonarQube for IntelliJ analysis start", AnalysisListener.class);

void started(Collection<VirtualFile> files, TriggerType trigger);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

@FunctionalInterface
public interface StatusListener {
Topic<StatusListener> SONARLINT_STATUS_TOPIC = Topic.create("SonarQube for IntelliJ Analyzer Status", StatusListener.class);
Topic<StatusListener> SONARLINT_STATUS_TOPIC = Topic.create("SonarQube for IntelliJ analyzer status", StatusListener.class);

/**
* Called when the status of the user-initiated analysis changes.
Expand Down

0 comments on commit 31a34c1

Please sign in to comment.