Skip to content

Commit

Permalink
upload candidate v3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
amattioc committed Feb 2, 2023
1 parent d50b25d commit 7b0822e
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20230127-1606
20230202-1116
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
*/
package it.bancaditalia.oss.sdmx.api;

import static java.util.stream.Collectors.toList;
import static java.util.stream.Collectors.toSet;

import java.io.Serializable;
Expand Down Expand Up @@ -177,7 +178,7 @@ public int size()
@Override
public Collection<String> values()
{
return codes.values().stream().map(LocalizedText::getText).collect(toSet());
return codes.values().stream().map(LocalizedText::getText).collect(toList());
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion MATLAB/Contents.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% Toolbox MatSDMX
% Version 3.0.4
% Version 3.0.5
% MATLAB interface to SDMX Web Services
%
% Files
Expand Down
2 changes: 1 addition & 1 deletion RJSDMX/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: RJSDMX
Version: 3.0-4
Version: 3.0-5
Title: R Interface to SDMX Web Services
Author: Attilio Mattiocco, Diana Nicoletti, Gianpaolo Lopez, Banca d'Italia
Maintainer: Attilio Mattiocco <[email protected]>
Expand Down
Binary file modified RJSDMX/inst/java/SDMX.jar
Binary file not shown.
Binary file modified STATA/jar/SDMX.jar
Binary file not shown.

0 comments on commit 7b0822e

Please sign in to comment.