1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

Change boolean to int in recove for Java OCA

(cherry picked from commit fa56f8fc6627c05961dab7cb72df9e6c6240a108)
This commit is contained in:
Tino Vazquez 2015-04-29 15:03:38 +02:00 committed by Carlos Martín
parent 5000d27281
commit b7e12a5a9f

View File

@ -894,7 +894,7 @@ public class VirtualMachine extends PoolElement{
* @param success recover by succeeding the missing transaction if true.
* @return If an error occurs the error message contains the reason.
*/
public OneResponse recover(boolean success)
public OneResponse recover(int success)
{
return recover(client, id, success);
}