Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
WarningImHack3r committed Jul 31, 2024
1 parent 3ce687a commit 63f687a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ intellijPlatform {
(getOrNull(pluginVersion) ?: getUnreleased())
.withHeader(false)
.withEmptySections(false),
Changelog.OutputType.HTML,
Changelog.OutputType.HTML
)
}
}
Expand Down Expand Up @@ -147,7 +147,7 @@ val runIdeForUiTests by intellijPlatformTesting.runIde.registering {
"-Drobot-server.port=8082",
"-Dide.mac.message.dialogs.as.sheets=false",
"-Djb.privacy.policy.text=<!--999.999-->",
"-Djb.consents.confirmation.enabled=false",
"-Djb.consents.confirmation.enabled=false"
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion qodana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

version: 1.0
linter: jetbrains/qodana-jvm-community:latest
projectJDK: "11"
projectJDK: "17"
profile:
name: qodana.recommended
exclude:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class DependencyManager(private val project: Project) {

private fun getPackageManager(): PackageManager? {
val fileManager = FileManager.getInstance(project)
return enumValues<PackageManager>().firstOrNull { packageManager ->
return PackageManager.entries.firstOrNull { packageManager ->
packageManager.getLockFilesNames().any { lockFile ->
fileManager.getVirtualFilesByName(lockFile).isNotEmpty()
}
Expand Down

0 comments on commit 63f687a

Please sign in to comment.