Skip to content

Commit

Permalink
REL-3342: Changed magnitude value to double as expected by seqexec.
Browse files Browse the repository at this point in the history
  • Loading branch information
sraaphorst committed Jan 5, 2018
1 parent 0fba08e commit 4c8f234
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected void thisApplyNext(final IConfig config, final IConfig prevFull) {
final ImList<Magnitude> magnitudes = base.getMagnitudesJava();
MAG_PROPERTIES.forEach((band, propName) ->
magnitudes.find(m -> m.band().equals(band)).
foreach(mag -> config.putParameter(systemName, DefaultParameter.getInstance(propName, mag))));
foreach(mag -> config.putParameter(systemName, DefaultParameter.getInstance(propName, mag.value()))));
});
}
}
Expand Down

0 comments on commit 4c8f234

Please sign in to comment.