removed lock printous

This commit is contained in:
David Ribeiro Alves 2012-03-22 17:58:58 +00:00
parent 1f31e96a9f
commit 893d2d9e55
1 changed files with 0 additions and 4 deletions

View File

@ -188,8 +188,6 @@ public class MachineUtils {
IMachine immutableMachine = manager.get().getVBox().findMachine(machineId);
session = manager.get().getSessionObject();
immutableMachine.lockMachine(session, type);
System.err.println("ACQUIRED LOCK ["+time+"]");
print();
break;
} catch (VBoxException e) {
VBoxException vbex = Throwables2.getFirstThrowableOfType(e, VBoxException.class);
@ -215,8 +213,6 @@ public class MachineUtils {
type, e.getMessage()), e);
} finally {
session.unlockMachine();
System.err.println("RELEASED LOCK ["+time+"]");
print();
}
}