Skip to content

Commit

Permalink
Removed unnecessary parentheseses
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrankel committed Apr 29, 2012
1 parent da925da commit a53308f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vaadin-scala-example/pom.xml
Expand Up @@ -8,7 +8,7 @@
</parent>
<artifactId>vaadin-scala-example</artifactId>
<packaging>war</packaging>
<version>2.0.1</version>
<version>2.0.2</version>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
Expand Down
Expand Up @@ -19,7 +19,7 @@ import com.vaadin.ui.CustomComponent
import vaadin.scala.{ HorizontalLayout, TextField, Button }

@SerialVersionUID(1L)
class CompositeFieldButton() extends CustomComponent {
class CompositeFieldButton extends CustomComponent {

val layout = new HorizontalLayout(spacing = true, margin = true) {

Expand Down
Expand Up @@ -19,5 +19,5 @@ import vaadin.scala.SimpleApplication

class VaadinScalaApp extends SimpleApplication {

override def main = new CompositeFieldButton()
override def main = new CompositeFieldButton
}

0 comments on commit a53308f

Please sign in to comment.