ItEr53S12CUCreacionRecursosLimitantesItEr52S13: Fix bug, incorrect value of field limitedResource shown
This commit is contained in:
parent
98c3dc4d10
commit
0f4a1ac839
1 changed files with 1 additions and 1 deletions
|
|
@ -655,7 +655,7 @@ public class WorkerCRUDController extends GenericForwardComposer implements
|
|||
}
|
||||
|
||||
public static LimitedResourceEnum valueOf(Boolean isLimitedResource) {
|
||||
return (isLimitedResource != null) ? LIMITED_RESOURCE : NON_LIMITED_RESOURCE;
|
||||
return (Boolean.TRUE.equals(isLimitedResource)) ? LIMITED_RESOURCE : NON_LIMITED_RESOURCE;
|
||||
}
|
||||
|
||||
public static Boolean valueOf(LimitedResourceEnum option) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue