Feature/24026 #3

Merged
giancarlo.panichi merged 194 commits from Feature/24026 into master 2023-11-09 19:12:54 +01:00
1 changed files with 7 additions and 7 deletions
Showing only changes of commit 2e168fc082 - Show all commits

View File

@ -229,24 +229,24 @@ public class RestPoolManager implements PoolManager {
if (algo.getCategory() == null){
algo.setCategory(category);
***REMOVED*** else category = algo.getCategory();
***REMOVED*** else algo.setCategory(algo.getCategory());
if (algo.getAlgorithmType() == null){
algo.setAlgorithmType(algorithmType);
***REMOVED*** else algorithmType = algo.getCategory();
***REMOVED*** else algo.setAlgorithmType(algo.getCategory());
if (algo.getSkipJava() == null){
algo.setSkipJava(skipJava);
***REMOVED*** else skipJava = algo.getSkipJava();
***REMOVED*** else algo.setSkipJava(algo.getSkipJava());
if (algo.getName() == null){
algo.setName(name+uuid);
***REMOVED*** else name = algo.getName()+"@"+uuid;
algo.setName(name+"@"+uuid);
***REMOVED*** else algo.setName(algo.getName()+"@"+uuid);
if (algo.getDescription() == null){
algo.setDescription(description);;
***REMOVED*** else description = algo.getDescription();
***REMOVED*** else algo.setDescription(algo.getDescription());
return algo;
***REMOVED***