This commit is contained in:
Nunzio Andrea Galante 2017-03-29 14:45:22 +00:00
parent f07c1ad63a
commit 2e168fc082
1 changed files with 7 additions and 7 deletions

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***