Skip to content

Commit

Permalink
Release 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Jan 12, 2016
1 parent 995b8c2 commit 63f7c43
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
1 change: 1 addition & 0 deletions core/core.iml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<excludeFolder url="file://$MODULE_DIR$/target/maven-archiver" />
<excludeFolder url="file://$MODULE_DIR$/target/maven-status" />
<excludeFolder url="file://$MODULE_DIR$/target/sema4g-1.2.0" />
<excludeFolder url="file://$MODULE_DIR$/target/surefire" />
<excludeFolder url="file://$MODULE_DIR$/target/test-classes" />
</content>
<orderEntry type="jdk" jdkName="1.7" jdkType="JavaSDK" />
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>sema4g-parent</artifactId>
<groupId>org.gwt4e.sema4g</groupId>
<version>1.2.1</version>
<version>1.2.3</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
12 changes: 4 additions & 8 deletions core/src/main/java/org/gwt4e/sema4g/client/SeMa4g.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,13 @@ private SeMa4g(Builder builder) {
}

public static final Builder builder() {
Builder builder = new Builder();
builder.initialCommands = new ArrayList<>();
builder.finalCommands = new ArrayList<>();
builder.seMa4gCommands = new ArrayList<>();
return builder;
return new Builder();
}

public static final class Builder {
static List<InitCommand> initialCommands = new ArrayList<>();
static List<FinalCommand> finalCommands = new ArrayList<>();
static List<SeMa4gCommand> seMa4gCommands = new ArrayList<>();
List<InitCommand> initialCommands = new ArrayList<>();
List<FinalCommand> finalCommands = new ArrayList<>();
List<SeMa4gCommand> seMa4gCommands = new ArrayList<>();

/**
* Adds the command to the list of commands, which will be executed, when the context runs. <br></br> if the command is already added to the list of commands, the command will be ignored.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.gwt4e.sema4g</groupId>
<artifactId>sema4g-parent</artifactId>
<version>1.2.1</version>
<version>1.2.3</version>
<packaging>pom</packaging>
<name>sema4g (parent)</name>
<description>Managing asynchronous calls in GWT</description>
Expand Down
2 changes: 1 addition & 1 deletion resty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>sema4g-parent</artifactId>
<groupId>org.gwt4e.sema4g</groupId>
<version>1.2.1</version>
<version>1.2.3</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
1 change: 1 addition & 0 deletions resty/resty.iml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<excludeFolder url="file://$MODULE_DIR$/target/maven-archiver" />
<excludeFolder url="file://$MODULE_DIR$/target/maven-status" />
<excludeFolder url="file://$MODULE_DIR$/target/resty-1.2.0" />
<excludeFolder url="file://$MODULE_DIR$/target/surefire" />
<excludeFolder url="file://$MODULE_DIR$/target/test-classes" />
</content>
<orderEntry type="jdk" jdkName="1.7" jdkType="JavaSDK" />
Expand Down

0 comments on commit 63f7c43

Please sign in to comment.