Skip to content

Commit

Permalink
Fix Class constructor must not have parameters #24
Browse files Browse the repository at this point in the history
  • Loading branch information
Salil Cuncoliencar authored and Salil Cuncoliencar committed Oct 5, 2020
1 parent 6e91381 commit d38c698
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 d38c698

Please sign in to comment.