Skip to content

Commit addd4ff

Browse files
committed
Fixed the readStringValues bug at version 1.2.1.2.
1 parent 6b4fdfc commit addd4ff

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>tw.fondus.commons</groupId>
55
<artifactId>commons-netcdf</artifactId>
6-
<version>1.2.1.1</version>
6+
<version>1.2.1.2</version>
77
<packaging>jar</packaging>
88

99
<name>The Commons-NetCDF Library</name>

src/main/java/tw/fondus/commons/nc/util/NetCDFUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,6 @@ public static List<String> readStringValues( Variable stringVariable ) throws IO
590590
ArrayChar values = (ArrayChar) stringVariable.read();
591591
Index index = values.getIndex();
592592
return IntStream.range( 0, shape[0] )
593-
.parallel()
594593
.mapToObj( i -> values.getString( index.set0( i ) ) )
595594
.collect( Collectors.toList() );
596595
}

0 commit comments

Comments
 (0)