Skip to content

Commit

Permalink
update to releases
Browse files Browse the repository at this point in the history
  • Loading branch information
renaudpawlak committed Jul 26, 2017
1 parent c5c417f commit e147623
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
1 change: 0 additions & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
</attributes>
</classpathentry>
<classpathentry exported="true" kind="con" path="org.springsource.ide.eclipse.gradle.classpathcontainer"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,37 +125,37 @@
<dependency>
<groupId>org.jsweet.candies</groupId>
<artifactId>jsweet-core</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0-20161222</version>
</dependency>
<dependency>
<groupId>org.jsweet.candies</groupId>
<artifactId>angular</artifactId>
<version>1.5.0-SNAPSHOT</version>
<version>1.5.0-1.1.0-20160525</version>
</dependency>
<dependency>
<groupId>org.jsweet.candies</groupId>
<artifactId>angular-route</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0-1.1.0-20160525</version>
</dependency>
<dependency>
<groupId>org.jsweet.candies</groupId>
<artifactId>es6-promise</artifactId>
<version>0.0.0-SNAPSHOT</version>
<version>0.0.0-1.1.0-20160525</version>
</dependency>
<dependency>
<groupId>org.jsweet.candies</groupId>
<artifactId>backbone</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-1.1.0-20160525</version>
</dependency>
<dependency>
<groupId>org.jsweet.candies</groupId>
<artifactId>knockout</artifactId>
<version>3.2.0-SNAPSHOT</version>
<version>3.4.0-1.1.0-20160525</version>
</dependency>
<dependency>
<groupId>org.jsweet.candies</groupId>
<artifactId>marked</artifactId>
<version>0.0.0-SNAPSHOT</version>
<version>0.0.0-1.1.0-20160525</version>
</dependency>
</dependencies>
</project>
4 changes: 1 addition & 3 deletions src/main/java/org/jsweet/examples/todomvc/ToDos.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class TodoList extends Collection<Todo> {

// Filter down the list of all todo items that are finished.
Todo[] done() {
return this.filter((todo, i, __) -> {
return this.filter((todo, i) -> {
return (Boolean) todo.get("done");
});
}
Expand Down Expand Up @@ -286,7 +286,6 @@ public void addOne(Todo todo) {
void addAll() {
Globals.Todos.each((todo, p, __) -> {
this.addOne(todo);
return null;
});
}

Expand Down Expand Up @@ -344,7 +343,6 @@ void toggleAllComplete() {
$set("done", done);
}
});
return null;
});
}

Expand Down

0 comments on commit e147623

Please sign in to comment.