Skip to content

Commit

Permalink
fix qodana issues (#36)
Browse files Browse the repository at this point in the history
Co-authored-by: Dan Timofte <dantimofte@proton.me>
  • Loading branch information
dantimofte and Dan Timofte authored Oct 27, 2024
1 parent d61632d commit 4dc1a12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import com.intellij.psi.xml.XmlAttributeValue
class QuickfixComponentDocumentationTargetProvider : DocumentationTargetProvider {


var rootTag: XmlTag? = null
private var rootTag: XmlTag? = null
private var fixDataDictionaryService: FixDataDictionaryService? = null


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import com.intellij.notification.*
import com.intellij.openapi.actionSystem.AnAction
import com.intellij.openapi.actionSystem.AnActionEvent

private const val GROUP_DISPLAY_ID = "Display ID"

class ShowNotificationSampleAction : AnAction() {
private val GROUP_DISPAY_ID = "UI Samples"
private val messageTitle = "Title of notification"
private val messageDetails = "Details of notification"

Expand All @@ -15,7 +15,7 @@ class ShowNotificationSampleAction : AnAction() {
}

private fun aNotification() {
val notification = Notification(GROUP_DISPAY_ID,
val notification = Notification(GROUP_DISPLAY_ID,
"1 .$messageTitle",
"1 .$messageDetails",
NotificationType.INFORMATION)
Expand Down

0 comments on commit 4dc1a12

Please sign in to comment.