git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/dataminer-pool-manager@146433 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
f07c1ad63a
commit
2e168fc082
|
@ -229,23 +229,23 @@ public class RestPoolManager implements PoolManager {
|
||||||
|
|
||||||
if (algo.getCategory() == null){
|
if (algo.getCategory() == null){
|
||||||
algo.setCategory(category);
|
algo.setCategory(category);
|
||||||
***REMOVED*** else category = algo.getCategory();
|
***REMOVED*** else algo.setCategory(algo.getCategory());
|
||||||
|
|
||||||
if (algo.getAlgorithmType() == null){
|
if (algo.getAlgorithmType() == null){
|
||||||
algo.setAlgorithmType(algorithmType);
|
algo.setAlgorithmType(algorithmType);
|
||||||
***REMOVED*** else algorithmType = algo.getCategory();
|
***REMOVED*** else algo.setAlgorithmType(algo.getCategory());
|
||||||
|
|
||||||
if (algo.getSkipJava() == null){
|
if (algo.getSkipJava() == null){
|
||||||
algo.setSkipJava(skipJava);
|
algo.setSkipJava(skipJava);
|
||||||
***REMOVED*** else skipJava = algo.getSkipJava();
|
***REMOVED*** else algo.setSkipJava(algo.getSkipJava());
|
||||||
|
|
||||||
if (algo.getName() == null){
|
if (algo.getName() == null){
|
||||||
algo.setName(name+uuid);
|
algo.setName(name+"@"+uuid);
|
||||||
***REMOVED*** else name = algo.getName()+"@"+uuid;
|
***REMOVED*** else algo.setName(algo.getName()+"@"+uuid);
|
||||||
|
|
||||||
if (algo.getDescription() == null){
|
if (algo.getDescription() == null){
|
||||||
algo.setDescription(description);;
|
algo.setDescription(description);;
|
||||||
***REMOVED*** else description = algo.getDescription();
|
***REMOVED*** else algo.setDescription(algo.getDescription());
|
||||||
|
|
||||||
return algo;
|
return algo;
|
||||||
***REMOVED***
|
***REMOVED***
|
||||||
|
|
Loading…
Reference in New Issue