GT-3049 Fixes for return storage commit

This commit is contained in:
emteere 2019-09-05 16:24:29 -04:00
parent bfcadef17d
commit f599ab1623

View file

@ -90,8 +90,9 @@ public class CommitParamsAction extends DockingAction {
if (hfunc.getFunction().getSignatureSource() == SourceType.USER_DEFINED) { if (hfunc.getFunction().getSignatureSource() == SourceType.USER_DEFINED) {
source = SourceType.USER_DEFINED; source = SourceType.USER_DEFINED;
} }
HighFunctionDBUtil.commitParamsToDatabase(hfunc, true, source);
HighFunctionDBUtil.commitReturnToDatabase(hfunc, source); HighFunctionDBUtil.commitReturnToDatabase(hfunc, source);
HighFunctionDBUtil.commitParamsToDatabase(hfunc, true, source);
} }
catch (DuplicateNameException e) { catch (DuplicateNameException e) {
throw new AssertException("Unexpected exception", e); throw new AssertException("Unexpected exception", e);