Skip to content

Commit

Permalink
Meta version update
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Lunev committed Jun 16, 2021
1 parent 56104c3 commit b39c013
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>kotik-coder</groupId>
<artifactId>PULsE</artifactId>
<version>1.91FM_01</version>
<version>1.91FM_02</version>
<name>PULsE</name>
<description>Processing Unit for Laser flash Experiments</description>
<developers>
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/pulse/search/statistics/ResidualStatistic.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ public ResidualStatistic(ResidualStatistic another) {
}

public double[] transformResiduals() {
return getResiduals().stream().map(doubleArray -> doubleArray[1])
.mapToDouble(Double::doubleValue).toArray();
return getResiduals().stream().mapToDouble(doubleArray -> doubleArray[1]).toArray();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.91FM_01
1.91FM_02

0 comments on commit b39c013

Please sign in to comment.