Skip to content

Commit a036cb0

Browse files
Merge pull request #33 from codacy/quickfix
fix: windows odd missing function error
2 parents 95f3f61 + e9a6d74 commit a036cb0

File tree

1 file changed

+2
-2
lines changed
  • src/main/kotlin/com/codacy/intellij/plugin/services/cli

1 file changed

+2
-2
lines changed

src/main/kotlin/com/codacy/intellij/plugin/services/cli/CodacyCli.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class CodacyCli() {
9999
}
100100

101101
companion object {
102-
fun getService(project: Project, widget: CodacyCliStatusBarWidget? = null): CodacyCli {
102+
fun getService(project: Project): CodacyCli {
103103
val gitProvider = GitProvider.getRepository(project)
104104
?: throw IllegalStateException("No Git provider found for the project")
105105

@@ -113,7 +113,7 @@ class CodacyCli() {
113113
gitInfo.organization,
114114
gitInfo.repository,
115115
project,
116-
widget
116+
null
117117
)
118118
}
119119

0 commit comments

Comments
 (0)