We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95f3f61 + e9a6d74 commit a036cb0Copy full SHA for a036cb0
src/main/kotlin/com/codacy/intellij/plugin/services/cli/CodacyCli.kt
@@ -99,7 +99,7 @@ class CodacyCli() {
99
}
100
101
companion object {
102
- fun getService(project: Project, widget: CodacyCliStatusBarWidget? = null): CodacyCli {
+ fun getService(project: Project): CodacyCli {
103
val gitProvider = GitProvider.getRepository(project)
104
?: throw IllegalStateException("No Git provider found for the project")
105
@@ -113,7 +113,7 @@ class CodacyCli() {
113
gitInfo.organization,
114
gitInfo.repository,
115
project,
116
- widget
+ null
117
)
118
119
0 commit comments