Skip to content

Commit

Permalink
Merge pull request #25 from salilbc/master
Browse files Browse the repository at this point in the history
Fix Class constructor must not have parameters #24
  • Loading branch information
HilaG authored Oct 5, 2020
2 parents 70f1f01 + d38c698 commit 181b676
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/com/intuit/ddb/DockDockBuildConfigurable.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ import javax.swing.JComponent
import javax.swing.JTextField

// Docker Make project config
class DockDockBuildConfigurable(project: Project?, private val settings: DockDockBuildProjectSettings) : Configurable {
class DockDockBuildConfigurable(project: Project?) : Configurable {

private val settings = DockDockBuildProjectSettings()
private val dockerPathField = TextFieldWithBrowseButton()
private val codePathField = TextFieldWithBrowseButton()
private val mavenCachePathField = TextFieldWithBrowseButton()
Expand Down

0 comments on commit 181b676

Please sign in to comment.