Skip to content

Commit 9076e9b

Browse files
committed
bump to 2.4.0
1 parent 91dab3b commit 9076e9b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

EV3Menu/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020
<parent>
2121
<groupId>de.fhg.iais.openroberta.ev3.v1</groupId>
2222
<artifactId>EV3Parent</artifactId>
23-
<version>2.3.1</version>
23+
<version>2.4.0</version>
2424
<relativePath>../EV3Parent</relativePath>
2525
</parent>
2626
<artifactId>EV3Menu</artifactId>

EV3Parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<modelVersion>4.0.0</modelVersion>
88
<groupId>de.fhg.iais.openroberta.ev3.v1</groupId>
99
<artifactId>EV3Parent</artifactId>
10-
<version>2.3.1</version>
10+
<version>2.4.0</version>
1111
<packaging>pom</packaging>
1212
<name>EV3Parent</name>
1313
<description>the parent project of the EV3 Lejos Roberta Lab artifacts</description>

EV3Runtime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.fhg.iais.openroberta.ev3.v1</groupId>
66
<artifactId>EV3Parent</artifactId>
7-
<version>2.3.1</version>
7+
<version>2.4.0</version>
88
<relativePath>../EV3Parent</relativePath>
99
</parent>
1010

EV3Runtime/src/main/java/de/fhg/iais/roberta/runtime/BlocklyMethods.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ public static ArrayList<PickColor> createListWithColour(PickColor... elements) {
361361
* @param times that the item should be added to the list
362362
* @return {@link ArrayList} with the given elements
363363
*/
364-
public static ArrayList<Float> createListWithItem(Float item, float times) {
364+
public static ArrayList<Float> createListWithItem(float item, float times) {
365365
ArrayList<Float> result = new ArrayList<>();
366366
for ( int i = 0; i < times; i++ ) {
367367
result.add(item);

0 commit comments

Comments
 (0)